File: mailx.1

package info (click to toggle)
heirloom-mailx 12.4-2%2Bdeb6u1
  • links: PTS
  • area: main
  • in suites: squeeze-lts
  • size: 1,548 kB
  • ctags: 1,960
  • sloc: ansic: 29,391; sh: 333; makefile: 126
file content (4955 lines) | stat: -rw-r--r-- 134,681 bytes parent folder | download
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
'\" t
.\" Copyright (c) 1980, 1990, 1993
.\"     The Regents of the University of California.  All rights reserved.
.\" Copyright (c) 2000
.\"     Gunnar Ritter.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\"    must display the following acknowledgement:
.\"     This product includes software developed by the University of
.\"     California, Berkeley and its contributors.
.\"     This product includes software developed by Gunnar Ritter
.\"     and his contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\"    may be used to endorse or promote products derived from this software
.\"    without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS '\fIAS IS\fR' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\"     Sccsid: @(#)mailx.1	2.326 (gritter) 10/1/07
.\"
.TH MAILX 1 "10/1/07" "Heirloom mailx 12.4" "User Commands"
.SH NAME
mailx \- send and receive Internet mail
.SH SYNOPSIS
.PD 0
.HP
.ad l
\fBmailx\fR [\fB\-BDdEFintv~\fR]
[\fB\-s\fI\ subject\fR] [\fB\-a\fI\ attachment\fR ]
[\fB\-c\fI\ cc-addr\fR] [\fB\-b\fI\ bcc-addr\fR] [\fB\-r\fI\ from-addr\fR]
[\fB\-h\fI\ hops\fR]
[\fB\-A\fI\ account\fR]
[\fB\-S\fI\ variable\fR[\fB=\fIvalue\fR]]
\fIto-addr\fR .\ .\ .
.HP
.ad l
\fBmailx\fR [\fB\-BDdeEHiInNRv~\fR] [\fB\-T\fI\ name\fR]
[\fB\-A\fI\ account\fR]
[\fB\-S\fI\ variable\fR[\fB=\fIvalue\fR]]
\fB\-f\fR [\fIname\fR]
.HP
.ad l
\fBmailx\fR [\fB\-BDdeEinNRv~\fR]
[\fB\-A\fI\ account\fR]
[\fB\-S\fI\ variable\fR[\fB=\fIvalue\fR]]
[\fB\-u\fI\ user\fR]
.br
.PD
.ad b
.SH DESCRIPTION
\fIMailx\fR is an intelligent mail processing system, which has
a command syntax reminiscent of
.IR ed (1)
with lines replaced by messages.
It is based on Berkeley Mail 8.1,
is intended to provide the functionality of the POSIX
.B mailx
command,
and offers extensions
for MIME, IMAP, POP3, SMTP, and S/MIME.
.I Mailx
provides enhanced
features for interactive use, such as caching and disconnected
operation for IMAP, message threading, scoring, and filtering.
It is also usable as a mail batch language, both for sending
and receiving mail.
.PP
The following options are accepted:
.TP
.BI \-A \ name
Executes an 
.I account
command (see below)
for \fIname\fR after the startup files have been read.
.TP
.BI \-a \ file
Attach the given file to the message.
.TP
.B \-B
Make standard input and standard output line-buffered.
.TP
.BI \-b \ address
Send blind carbon copies to list.
List should be a comma-separated
list of names.
.TP
.BI \-c \ address
Send carbon copies to list of users.
.TP
.B \-D
Start in
.I disconnected
mode; see the description for the
.I disconnected
variable option.
.TP
.B \-d
Enables debugging messages and disables the actual delivery of messages.
Unlike
.IR \-v ,
this option is intended for
.I mailx
development only.
.TP
.B \-e
Just check if mail is present in the system mailbox.
If yes, return an exit status of zero,
else, a non-zero value.
.TP
.B \-E
If an outgoing message does not contain any text
in its first or only message part,
do not send it but discard it silently,
effectively setting the
.I skipemptybody
variable at program startup.
This is useful for sending messages
from scripts started by
.IR cron (8).
.TP
\fB\-f\fR [\fIfile\fR]
Read in the contents of the user's mbox
(or the specified file)
for processing;
when
.I mailx
is quit, it writes
undeleted messages back
to this file.
The string \fIfile\fR is handled
as described for the
.I folder
command below.
.TP
.B \-F
Save the message to send
in a file named after the local part
of the first recipient's address.
.TP
.B \-H
Print header summaries for all messages and exit.
.TP
\fB\-h\fI hops\fR
Invoke sendmail with the specified hop count.
This option has no effect when SMTP is used for sending mail.
.TP
.B \-i
Ignore tty interrupt signals.
This is
particularly useful when using
\fImailx\fR on noisy phone lines.
.TP
.B \-I
Shows the `Newsgroup:' or `Article-Id:' fields
in the header summary.
Only applicable in combination with
.IR \-f .
.TP
.B \-n
Inhibits reading /etc/nail.rc upon startup.
This option should be activated for
.I mailx
scripts that are invoked on more than one machine,
because the contents of that file may differ between them.
.TP
.B \-N
Inhibits the initial display of message headers when reading mail
or editing a mail folder.
.TP
.BI \-q \ file
Start the message with the contents of the specified file.
May be given in send mode only.
.TP
.BI \-r \ address
Sets the
.I From
address. Overrides any
.I from
variable specified in environment or startup files.
Tilde escapes are disabled.
The \fI\-r\fI address\fR options are passed to the mail transfer agent
unless SMTP is used.
This option exists for compatibility only;
it is recommended to set the 
.I from
variable directly instead.
.TP
.B \-R
Opens any folders read-only.
.TP
.BI \-s \ subject
Specify subject on command line (only the first argument after the
.I \-s
flag is used as a subject; be careful to quote subjects
containing spaces).
.TP
\fB\-S\fI\ variable\fR[\fB=\fIvalue\fR]
Sets the internal option
.I variable
and, in case of a string option,
assigns
.I value
to it.
.TP
.BI \-T \ name
Writes the `Message-Id:' and `Article-Id:' header fields
of each message read in the file
.IR name .
Implies
.IR \-I .
Compressed files are handled as described for the
.I folder
command below.
.TP
.B \-t
The message to be sent is expected to contain a message header
with `To:', `Cc:', or `Bcc:' fields giving its recipients.
Recipients specified on the command line are ignored.
.TP
.BI \-u \ user
Reads the mailbox of the given user name.
.TP
.B \-v
Verbose mode.
The details of
delivery are displayed on the user's terminal.
.TP
.B \-V
Print \fImailx\fR's version and exit.
.TP
.B \-~
Enable tilde escapes even if not in interactive mode.
.SS "Sending mail"
To send a message to one or more people,
\fImailx\fR can be invoked with arguments
which are the names of people
to whom the mail will be sent.
The user is then expected to type in his message,
followed by an `control-D' at the beginning of a line.
The section below Replying to
or originating mail,
describes some features of \fImailx\fR
available to help when composing letters.
.SS "Reading mail"
In normal usage \fImailx\fR is given no arguments
and checks the user's mail out of the post office,
then prints out a one line header
of each message found.
The current message is initially
the first message (numbered 1)
and can be printed using the print command
which can be abbreviated `p').
The user can move among the messages
much as he moves between lines in
.IR ed (1),
with the commands `+' and `\-' moving backwards and forwards,
and simple numbers.
.SS "Disposing of mail"
After examining a message
the user can delete `d') the message
or reply `r') to it.
Deletion causes the \fImailx\fR program
to forget about the message.
This is not irreversible;
the message can be undeleted `u')
by giving its number,
or the \fImailx\fR session can be aborted
by giving the exit `x') command.
Deleted messages will, however,
usually disappear never to be seen again.
.SS "Specifying messages"
Commands such as print and delete
can be given a list of message numbers
as arguments to apply to a number of messages at once.
Thus `\fIdelete 1 2\fR' deletes messages 1 and 2,
while `\fIdelete 1-5\fR' deletes messages 1 through 5.
In sorted or threaded mode (see the
.I sort
and
.I thread
commands),
`\fIdelete 1-5\fR' deletes the messages
that are located between (and including) messages 1 through 5
in the sorted/threaded order,
as shown in the header summary.
The following special message names exist:
.TP
.B :n
All new messages.
.TP
.B :o
All old messages (any not in state read or new).
.TP
.B :u
All unread messages.
.TP
.B :d
All deleted messages (for the
.I undelete
command).
.TP
.B :r
All read messages.
.TP
.B :f
All `flagged' messages.
.TP
.B :a
All answered messages
(cf. the
.I markanswered
variable).
.TP
.B :t
All messages marked as draft.
.TP
.B :k
All `killed' messages.
.TP
.B :j
All messages classified as junk.
.TP
.B .
The current message.
.TP
.B ;
The message that was previously the current message.
.TP
.B ,
The parent message of the current message,
that is the message with the Message-ID
given in the `In-Reply-To:' field
or the last entry of the `References:' field
of the current message.
.TP
.B \-
The next previous undeleted message,
or the next previous deleted message for the
.I undelete
command.
In sorted/threaded mode,
the next previous such message in the sorted/threaded order.
.TP
.B +
The next undeleted message,
or the next deleted message for the
.I undelete
command.
In sorted/threaded mode,
the next such message in the sorted/threaded order.
.TP
.B ^
The first undeleted message,
or the first deleted message
for the
.I undelete
command.
In sorted/threaded mode,
the first such message in the sorted/threaded order.
.TP
.B $
The last message.
In sorted/threaded mode,
the last message in the sorted/threaded order.
.TP
.BI & x
In threaded mode,
selects the message addressed with
.IR x ,
where
.I x
is any other message specification,
and all messages from the thread that begins at it.
Otherwise, it is identical to
.IR x .
If
.I x
is omitted,
the thread beginning with the current message is selected.
.TP
.B *
All messages.
.TP
.B `
All messages that were included in the message list
for the previous command.
.TP
.BI / string
All messages that contain
.I string
in the subject field (case ignored).
See also the
.I searchheaders
variable.
If
.I string
is empty,
the string from the previous specification of that type is used again.
.TP
.I address
All messages from
.IR address .
.TP
.BI ( criterion )
All messages that satisfy the given IMAP-style SEARCH
.IR criterion .
This addressing mode is available with all types of folders;
for folders not located on IMAP servers,
or for servers unable to execute the SEARCH command,
.I mailx
will perform the search locally.
Strings must be enclosed by double quotes `"' in their entirety
if they contain white space or parentheses;
within the quotes,
only backslash `\e' is recognized as an escape character.
All string searches are case-insensitive.
When the description indicates
that the `envelope' representation of an address field is used,
this means that the search string is checked against
both a list constructed as
.nf
.sp
\fB("\fIreal name\fB" "\fIsource-route\fB" "\fIlocal-part\fB" "\fIdomain-part\fB")\fR
.sp
.fi
for each address,
and the addresses without real names
from the respective header field.
Criteria can be nested using parentheses.
.TP
\fB(\fIcriterion1 criterion2\fR .\|.\|. \fIcriterionN\fB)\fR
All messages that satisfy all of the given criteria.
.TP
.BI (or " criterion1 criterion2" )
All messages that satisfy either
.I criterion1
or
.IR criterion2 ,
or both.
To connect more than two criteria using `or',
(or) specifications have to be nested using additional parentheses,
as with `(or\ a\ (or\ b\ c))';
`(or\ a\ b\ c)' means ((a or b) and c).
For a simple `or' operation of independent criteria
on the lowest nesting level,
it is possible to achieve similar effects by using
three separate criteria, as with
`(a)\ (b)\ (c)'.
.TP
.BI (not " criterion" )
All messages that do not satisfy
.IR criterion .
.TP
.BI (bcc " string" )
All messages that contain
.I string
in the `envelope' representation of the
.I Bcc:
field.
.TP
.BI (cc " string" )
All messages that contain
.I string
in the `envelope' representation of the
.I Cc:
field.
.TP
.BI (from " string" )
All messages that contain
.I string
in the `envelope' representation of the
.I From:
field.
.TP
.BI (subject " string" )
All messages that contain
.I string
in the
.I Subject:
field.
.TP
.BI (to " string" )
All messages that contain
.I string
in the `envelope' representation of the
.I To:
field.
.TP
.BI (header " name string" )
All messages that contain
.I string
in the specified
.I Name:
field.
.TP
.BI (body " string" )
All messages that contain
.I string
in their body.
.TP
.BI (text " string" )
All messages that contain
.I string
in their header or body.
.TP
.BI (larger " size" )
All messages that are larger than
.I size
(in bytes).
.TP
.BI (smaller " size" )
All messages that are smaller than
.I size
(in bytes).
.TP
.BI (before " date" )
All messages that were received before
.IR date ;
.I date
must be in the form
\fId\fR[\fId\fR]\fB-\fImon\fB-\fIyyyy\fR,
where \fId\fR[\fId\fR] is the day of the month
as one or two digits,
.I mon
is the name of the month\(emone of
`Jan', `Feb', `Mar',
`Apr', `May', `Jun',
`Jul', `Aug', `Sep',
`Oct', `Nov', or `Dec',
and
.I yyyy
is the year as four digits;
e.\|g. "30-Aug-2004".
.TP
.BI (on " date" )
All messages that were received on the specified date.
.TP
.BI (since " date" )
All messages that were received since the specified date.
.TP
.BI (sentbefore " date" )
All messages that were sent on the specified date.
.TP
.BI (senton " date" )
All messages that were sent on the specified date.
.TP
.BI (sentsince " date" )
All messages that were sent since the specified date.
.TP
.B ()
The same criterion as for the previous search.
This specification cannot be used as part of another criterion.
If the previous command line contained more than one independent criterion,
the last of those criteria is used.
.PP
A practical method to read a set of messages
is to issue a
.I from
command with the search criteria first
to check for appropriate messages,
and to read each single message then by typing `\fB`\fR' repeatedly.
.SS "Replying to or originating mail"
The
.I reply
command can be used
to set up a response to a message,
sending it back to the person who it was from.
Text the user types in then,
up to an end-of-file,
defines the contents of the message.
While the user is composing a message,
\fImailx\fR treats lines beginning with the character `~' specially.
For instance, typing `~m' (alone on a line)
will place a copy of the current message into the response
right shifting it by a tabstop
(see
.I indentprefix
variable, below).
Other escapes will set up subject fields,
add and delete recipients to the message,
attach files to it
and allow the user to escape to an editor
to revise the message
or to a shell to run some commands.
(These options are given in the summary below.)
.SS "Ending a mail processing session"
The user can end a \fImailx\fR session
with the quit (`q') command.
Messages which have been examined
go to the user's mbox file
unless they have been deleted
in which case they are discarded.
Unexamined messages go back
to the post office.
(See the \-f option above).
.SS "Personal and systemwide distribution lists"
It is also possible to create
a personal distribution lists so that,
for instance, the user can send mail
to `\fIcohorts\fR' and have it go
to a group of people.
Such lists can be defined by placing a line like
.nf

        \fBalias\fI cohorts bill ozalp jkf mark kridle@ucbcory\fR

.fi
in the file .mailrc in the user's home directory.
The current list of such aliases
can be displayed with the alias command in \fImailx\fR.
System wide distribution lists can be created
by editing /etc/aliases, see
.IR aliases (5)
and
.IR sendmail (8);
these are kept in a different syntax.
In mail the user sends,
personal aliases will be expanded
in mail sent to others so that
they will be able to reply to the recipients.
System wide aliases are not expanded when the mail is sent,
but any reply returned to the machine
will have the system wide alias expanded
as all mail goes through sendmail.
.SS "Recipient address specifications"
If the
.I expandaddr
option is not set (the default), recipient addresses must be names of
local mailboxes or Internet mail addresses.
.PP
If the
.I expandaddr
option is set, the following rules apply:
When an address is used to name a recipient
(in any of To, Cc, or Bcc),
names of local mail folders
and pipes to external commands
can also be specified;
the message text is then written to them.
The rules are: Any name which starts with a
.RB ` | '
character specifies a pipe,
the command string following the `|'
is executed and the message is sent to its standard input;
any other name which contains a
.RB ` @ '
character is treated as a mail address;
any other name which starts with a
.RB ` + '
character specifies a folder name;
any other name which contains a
.RB ` / '
character
but no
.RB ` ! '
or
.RB ` % '
character before also specifies a folder name;
what remains is treated as a mail address.
Compressed folders are handled as described for the
.I folder
command below.
.SS "Network mail (Internet / ARPA, UUCP, Berknet)"
See
.IR mailaddr (7)
for a description of network addresses.
\fIMailx\fR has a number of options
which can be set in the .mailrc file
to alter its behavior;
thus `\fIset askcc\fR' enables the askcc feature.
(These options are summarized below).
.SS "MIME types"
For any outgoing attachment,
\fImailx\fR tries to determine the content type.
It does this by reading MIME type files
whose lines have the following syntax:
.nf

        \fItype\fB/\fIsubtype      extension \fR[\fIextension \fR.\ .\ .]\fR

.fi
where type/subtype are strings describing the file contents,
and extension is the part of a filename starting after the last dot.
Any line not immediately beginning with an ASCII alphabetical character is
ignored by \fImailx\fR.
If there is a match with the extension of the file to attach,
the given type/subtype pair is used.
Otherwise, or if the filename has no extension,
the content types text/plain or application/octet-stream are used,
the first for text or international text files,
the second for any file that contains formatting characters
other than newlines and horizontal tabulators.
.SS "Character sets"
.I Mailx
normally detects the character set of the terminal
using the LC_CTYPE locale setting.
If the locale cannot be used appropriately,
the \fIttycharset\fR variable should be set
to provide an explicit value.
When reading messages,
their text is converted to the terminal character set if possible.
Unprintable characters and illegal byte sequences are detected
and replaced by Unicode substitute characters or question marks
unless the
.I print-all-chars
is set at initialization time.
.PP
The character set for outgoing messages
is not necessarily the same
as the one used on the terminal.
If an outgoing text message
contains characters not representable in US-ASCII,
the character set being used
must be declared within its header.
Permissible values can be declared
using the \fIsendcharsets\fR variable,
separated by commas;
.I mailx
tries each of the values in order
and uses the first appropriate one.
If the message contains characters that cannot be represented
in any of the given character sets,
the message will not be sent,
and its text will be saved to the `dead.letter' file.
Messages that contain NUL bytes are not converted.
.PP
Outgoing attachments are converted if they are plain text.
If the
.I sendcharsets
variable contains more than one character set name,
the
.I ~@
tilde escape will ask for the character sets for individual attachments
if it is invoked without arguments.
.PP
Best results are usually achieved
when
.I mailx
is run in a UTF-8 locale
on a UTF-8 capable terminal.
In this setup,
characters from various countries can be displayed,
while it is still possible to use more simple
character sets for sending
to retain maximum compatibility with older mail clients.
.SS "Commands"
Each command is typed on a line by itself,
and may take arguments following the command word.
The command need not be typed in its entirety \(en
the first command which matches the typed prefix is used.
For commands which take message lists as arguments,
if no message list is given,
then the next message forward which satisfies
the command's requirements is used.
If there are no messages forward of the current message,
the search proceeds backwards,
and if there are no good messages at all,
\fImailx\fR types `\fIapplicable messages\fR' and aborts the command.
If the command begins with a \fI#\fR sign,
the line is ignored.
.PP
The arguments to commands can be quoted, using the following methods:
.IP \(bu
An argument can be enclosed between paired double-quotes
"\|" or single-quotes '\|'; any white space, shell
word expansion, or backslash characters within the quotes
are treated literally as part of the argument.
A double-quote will be treated literally within
single-quotes and vice versa. These special properties of
the quote marks occur only when they are paired at the
beginning and end of the argument.
.IP \(bu
A backslash outside of the enclosing quotes is discarded
and the following character is treated literally as part of
the argument.
.IP \(bu
An unquoted backslash at the end of a command line is
discarded and the next line continues the command.
.PP
Filenames, where expected, are subjected to the following
transformations, in sequence:
.IP \(bu
If the filename begins with an unquoted plus sign, and
the
.I folder
variable is defined,
the plus sign will be replaced by the value of the
.I folder
variable followed by a slash. If the
.I folder
variable is
unset or is set to null, the filename will be unchanged.
.IP \(bu
Shell word expansions are applied to the filename.
If more than a single pathname results
from this expansion and the command is expecting one
file, an error results.
.PP
The following commands are provided:
.TP
.B \-
Print out the preceding message.
If given a numeric argument n,
goes to the n'th previous message and prints it.
.TP
.B ?
Prints a brief summary of commands.
.TP
.B !
Executes the shell (see
.IR sh (1)
and
.IR csh (1))
command which follows.
.TP
.B |
A synonym for the \fIpipe\fR command.
.TP
.B account
(ac) Creates, selects or lists
an email account.
An account is formed by a group of commands,
primarily of those to set variables.
With two arguments,
of which the second is a `{',
the first argument gives an account name,
and the following lines create a group of commands for that account
until a line containing a single `}' appears.
With one argument,
the previously created group of commands
for the account name is executed,
and a
.I folder
command is executed for the system mailbox or inbox
of that account.
Without arguments,
the list of accounts and their contents are printed.
As an example,
.sp
.nf
    \fBaccount\fI myisp\fR \fB{\fR
        set folder=imaps://mylogin@imap.myisp.example
        set record=+Sent
        set from="myname@myisp.example (My Name)"
        set smtp=smtp.myisp.example
    \fB}\fR
.fi
.sp
creates an account named `myisp'
which can later be selected by specifying `account myisp'.
.TP
.B alias
(a) With no arguments,
prints out all currently-defined aliases.
With one argument, prints out that alias.
With more than one argument,
creates a new alias or changes an old one.
.TP
.B alternates
(alt) The alternates command is useful
if the user has accounts on several machines.
It can be used to inform \fImailx\fR
that the listed addresses all belong to the invoking user.
When he replies to messages,
\fImailx\fR will not send a copy of the message
to any of the addresses
listed on the alternates list.
If the alternates command is given
with no argument,
the current set of alternate names is displayed.
.TP
.B answered
(ans) Takes a message list and marks each message
as a having been answered.
This mark has no technical meaning in the mail system;
it just causes messages to be marked in the header summary,
and makes them specially addressable.
.TP
.B cache
Only applicable to cached IMAP mailboxes;
takes a message list and reads the specified messages
into the IMAP cache.
.TP
.B call
Calls a macro (see the
.I define
command).
.TP
.B cd
Same as chdir.
.TP
.B certsave
Only applicable to S/MIME signed messages.
Takes a message list and a file name
and saves the certificates contained within the message signatures
to the named file in both human-readable and PEM format.
The certificates can later be used to send encrypted messages
to the messages' originators by setting the
.I smime-encrypt-user@host
variable.
.TP
.B chdir
(ch) Changes the user's working directory to that specified,
if given.
If no directory is given,
then changes to the user's login directory.
.TP
.B classify
(cl) Takes a list of messages and
examines their contents for characteristics of junk mail
using Bayesian filtering.
Messages considered to be junk are then marked as such.
The junk mail database is not changed.
.TP
.B collapse
(coll)
Only applicable to threaded mode.
Takes a message list
and makes all replies to these messages invisible
in header summaries,
unless they are in state `new'.
.TP
.B connect
(conn) If operating in disconnected mode on an IMAP mailbox,
switch to online mode and connect to the mail server
while retaining the mailbox status.
See the description of the
.I disconnected
variable for more information.
.TP
.B copy
(c) The copy command does the same thing that
.I save
does,
except that it does not mark the messages
it is used on for deletion when the user quits.
Compressed files and IMAP mailboxes are handled as described for the
.I folder
command.
.TP
.B Copy
(C) Similar to
.IR copy ,
but saves the messages in a file named after the local part
of the sender address of the first message.
.TP
.B decrypt
(dec) For unencrypted messages,
this command is identical to
.IR copy .
Encrypted messages are first decrypted, if possible,
and then copied.
.TP
.B Decrypt
(Dec) Similar to
.IR decrypt ,
but saves the messages in a file named after the local part
of the sender address of the first message.
.TP
.B define
(def) Defines a macro.
A macro definition is a sequence of commands in the following form:
.sp
.nf
    \fBdefine\fR \fIname\fB {\fR
        \fIcommand1\fR
        \fIcommand2\fR
        .\|.\|.
        \fIcommandN\fR
    \fB}\fR
.fi
.sp
Once defined, a macro can be explicitly invoked using the
.I call
command,
or can be implicitly invoked by setting the
.I folder-hook
or
.I folder-hook-fullname
variables.
.TP
.B defines
Prints the currently defined macros including their contents.
.TP
.B delete
(d) Takes a list of messages as argument
and marks them all as deleted.
Deleted messages will not be saved in mbox,
nor will they be available for most other commands.
.TP
.B discard
Same as ignore.
.TP
.B disconnect
(disco) If operating in online mode on an IMAP mailbox,
switch to disconnected mode while retaining the mailbox status.
See the description of the
.I disconnected
variable for more information.
A list of messages may optionally be given as argument;
the respective messages are then read into the cache
before the connection is closed.
Thus `disco *' makes the entire current mailbox
available for disconnected use.
.TP
.BR dp \ or \ dt
Deletes the current message
and prints the next message.
If there is no next message,
\fImailx\fR says `\fIat EOF\fR'.
.TP
.B draft
Takes a message list and marks each message
as a draft.
This mark has no technical meaning in the mail system;
it just causes messages to be marked in the header summary,
and makes them specially addressable.
.TP
.B echo
Echoes its arguments,
resolving special names
as documented for the folder command.
The escape sequences
`\fB\ea\fR',
`\fB\eb\fR',
`\fB\ec\fR',
`\fB\ef\fR',
`\fB\en\fR',
`\fB\er\fR',
`\fB\et\fR',
`\fB\ev\fR',
`\fB\e\e\fR', and
`\fB\e0\fInum\fR'
are interpreted
as with the
.IR echo (1)
command.
.TP
.B edit
(e) Takes a list of messages
and points the text editor
at each one in turn.
Modified contents are discarded
unless the
.I writebackedited
variable is set.
.TP
.B else
Marks the end of the then-part
of an if statement
and the beginning of the part
to take effect if the condition
of the if statement is false.
.TP
.B endif
Marks the end of an if statement.
.TP
.B exit
(ex or x) Effects an immediate return to the Shell
without modifying the user's system mailbox,
his mbox file,
or his edit file in \-f.
.TP
.B file
(fi) The same as folder.
.TP
.B flag
(fl) Takes a message list
and marks the messages as `flagged' for urgent/special attention.
This mark has no technical meaning in the mail system;
it just causes messages to be highlighted in the header summary,
and makes them specially addressable.
.TP
.B folders
With no arguments,
list the names of the folders in the folder directory.
With an existing folder as an argument,
lists then names of folders below the named folder;
e.\|g. the command `folders @'
lists the folders on the base level of the current IMAP server.
See also the
.I imap-list-depth
variable.
.TP
.B folder
(fold) The folder command switches
to a new mail file or folder.
With no arguments, it tells the user
which file he is currently reading.
If an argument is given,
it will write out changes
(such as deletions) the user has made
in the current file and read in
the new file.
Some special conventions are recognized for the name.
\fB#\fR means the previous file,
\fB%\fR means the invoking user's system mailbox,
\fB%\fIuser\fR means \fIuser's\fR system mailbox,
\fB&\fR means the invoking user's mbox file,
and \fB+\fIfile\fI means a \fIfile\fR in the folder directory.
\fB%:\fIfilespec\fR expands to the same value as \fIfilespec\fR,
but the file is handled as a system mailbox
e.\ g. by the mbox and save commands.
If the name matches one of the strings defined with the
.I shortcut
command,
it is replaced by its long form and expanded.
If the name ends with \fB.gz\fR or \fB.bz2\fR,
it is treated as compressed with
.IR gzip (1)
or
.IR bzip2 (1),
respectively.
Likewise, if \fIname\fR does not exist,
but either \fIname\fB.gz\fR or \fIname\fB.bz2\fR exists,
the compressed file is used.
If \fIname\fR refers to a directory
with the subdirectories `tmp', `new', and `cur',
it is treated as a folder in
.I maildir
format.
A name of the form
.nf

       \fIprotocol\fB://\fR[\fIuser\fB@\fR]\fIhost\fR[\fB:\fIport\fR][\fB/\fIfile\fR]

.fi
is taken as an Internet mailbox specification.
The supported protocols are currently
.B imap
(IMAP v4r1),
.B imaps
(IMAP with SSL/TLS encryption),
.B pop3
(POP3),
and
.B pop3s
(POP3 with SSL/TLS encryption).
If
.I user
contains special characters, in particular `/' or `%',
they must be escaped in URL notation,
as `%2F' or `%25'.
The optional
.I file
part applies to IMAP only;
if it is omitted,
the default `INBOX' is used.
If \fImailx\fR is connected to an IMAP server,
a name of the form \fB@\fImailbox\fR
refers to the \fImailbox\fR on that server.
If the `folder' variable refers to an IMAP account,
the special name `%' selects the `INBOX' on that account.
.TP
.B Followup
(F) Similar to
.IR Respond ,
but saves the message in a file
named after the local part of the first recipient's address.
.TP
.B followup
(fo) Similar to
.IR respond ,
but saves the message in a file
named after the local part of the first recipient's address.
.TP
.B followupall
Similar to
.IR followup ,
but responds to all recipients regardless of the
.I flipr
and
.I Replyall
variables.
.TP
.B followupsender
Similar to
.IR Followup ,
but responds to the sender only regardless of the
.I flipr
and
.I Replyall
variables.
.TP
.B forward
(fwd)
Takes a message and the address of a recipient
and forwards the message to him.
The text of the original message is included in the new one,
with the value of the
.I fwdheading
variable printed before.
The
.I fwdignore
and
.I fwdretain
commands specify which header fields are included in the new message.
Only the first part of a multipart message is included unless the
.I forward-as-attachment
option is set.
.TP
.B Forward
(Fwd)
Similar to
.IR forward ,
but saves the message in a file named after
the local part of the recipient's address.
.TP
.B from
(f) Takes a list of messages
and prints their message headers,
piped through the pager if the output does not fit on the screen.
.TP
.B fwdignore
Specifies which header fields are to be ignored with the
.I forward
command.
This command has no effect when the
.I forward-as-attachment
option is set.
.TP
.B fwdretain
Specifies which header fields are to be retained with the
.I forward
command.
.I fwdretain
overrides
.IR fwdignore .
This command has no effect when the
.I forward-as-attachment
option is set.
.TP
.B good
(go) Takes a list of messages
and marks all of them as not being junk mail.
Data from these messages is then inserted
into the junk mail database for future classification.
.TP
.B headers
(h) Lists the current range of headers,
which is an 18-message group.
If a `+' argument is given,
then the next 18-message group is printed,
and if a `\-' argument is given,
the previous 18-message group is printed.
.TP
.B help
A synonym for ?.
.TP
.B hold
(ho, also preserve) Takes a message list
and marks each message therein to be saved
in the user's system mailbox
instead of in mbox.
Does not override the delete command.
.I mailx
deviates from the POSIX standard with this command,
as a `next' command issued after `hold'
will display the following message,
not the current one.
.TP
.B if
Commands in \fImailx\fR's startup files
can be executed conditionally
depending on whether the user is sending
or receiving mail with the if command.
For example:
.nf

        \fBif \fIreceive\fR
                \fIcommands .\ .\ .\fR
        \fBendif\fR

.fi
An else form is also available:
.nf

        \fBif \fIreceive\fR
                \fIcommands .\ .\ .\fR
        \fBelse\fR
                \fIcommands .\ .\ .\fR
        \fBendif\fR

.fi
Note that the only allowed conditions are
.BR receive ,
.BR send ,
and
.B term
(execute command if standard input is a tty).
.TP
.B ignore
Add the list of header fields named to the ignored list.
Header fields in the ignore list are not printed
on the terminal when a message is printed.
This command is very handy for suppression
of certain machine-generated header fields.
The Type and Print commands can be used
to print a message in its entirety,
including ignored fields.
If ignore is executed with no arguments,
it lists the current set of ignored fields.
.TP
.B imap
Sends command strings directly to the current IMAP server.
\fIMailx\fR operates always in IMAP \fIselected state\fR
on the current mailbox;
commands that change this
will produce undesirable results
and should be avoided.
Useful IMAP commands are:
.RS
.TP
.B create
Takes the name of an IMAP mailbox as an argument
and creates it.
.TP
.B getquotaroot
.\" RFC 2087
Takes the name of an IMAP mailbox as an argument
and prints the quotas that apply to the mailbox.
Not all IMAP servers support this command.
.TP
.B namespace
.\" RFC 2342
Takes no arguments and prints the Personal Namespaces,
the Other User's Namespaces,
and the Shared Namespaces.
Each namespace type is printed in parentheses;
if there are multiple namespaces of the same type,
inner parentheses separate them.
For each namespace,
a namespace prefix and a hierarchy separator is listed.
Not all IMAP servers support this command.
.RE
.TP
.B inc
Same as
.IR newmail .
.TP
.B junk
(j) Takes a list of messages
and marks all of them as junk mail.
Data from these messages is then inserted
into the junk mail database for future classification.
.TP
.B kill
(k) Takes a list of messages and `kills' them.
Killed messages are not printed in header summaries,
and are ignored by the
.I next
command.
The
.I kill
command also sets the score of the messages to negative infinity,
so that subsequent
.I score
commands will not unkill them again.
Killing is only effective for the current session on a folder;
when it is quit, all messages are automatically unkilled.
.TP
.B list
Prints the names of all available commands.
.TP
.B Mail
(M) Similar to
.IR mail ,
but saves the message in a file
named after the local part of the first recipient's address.
.TP
.B mail
(m) Takes as argument login names
and distribution group names
and sends mail to those people.
.TP
.B mbox
Indicate that a list of messages be sent
to mbox in the user's home directory when
.I mailx
is quit.
This is the default action for messages
if unless the
.I hold
option is set.
.I mailx
deviates from the POSIX standard with this command,
as a `next' command issued after `mbox'
will display the following message,
not the current one.
.TP
.B move
(mv) Acts like
.IR copy ,
but marks the messages for deletion
if they were transferred successfully.
.TP
.B Move
(Mv) Similar to
.IR move ,
but moves the messages to a file named after the local part
of the sender address of the first message.
.TP
.B newmail
Checks for new mail in the current folder
without committing any changes before.
If new mail is present, a message is printed.
If the
.I header
variable is set,
the headers of each new message are also printed.
.TP
.B next
(n) like + or CR) Goes to the next message
in sequence and types it.
With an argument list, types the next matching message.
.TP
.B New
Same as
.IR unread .
.TP
.B new
Same as
.IR unread .
.TP
.B online
Same as
.IR connect .
.TP
.B noop
If the current folder is located on an IMAP or POP3 server,
a NOOP command is sent.
Otherwise, no operation is performed.
.TP
.B Pipe
(Pi) Like
.I pipe
but also
pipes ignored header fields
and all parts of MIME
.I multipart/alternative
messages.
.TP
.B pipe
(pi) Takes a message list and a shell command
and pipes the messages through the command.
Without an argument,
the current message is piped
through the command given by the \fIcmd\fR variable.
If the \fI page\fR variable is set,
every message is followed by a formfeed character.
.TP
.B preserve
(pre) A synonym for
.IR hold .
.TP
.B Print
(P) Like
.I print
but also
prints out ignored header fields
and all parts of MIME
.I multipart/alternative
messages.
See also
.IR print ,
.IR ignore ,
and
.IR retain .
.TP
.B print
(p) Takes a message list and types out each message
on the user's terminal.
If the message is a MIME multipart message,
all parts with a content type of `text' or `message' are shown,
the other are hidden except for their headers.
Messages are decrypted and converted to the terminal character set
if necessary.
.TP
.B probability
(prob) For each word given as argument,
the contents of its junk mail database entry are printed.
.TP
.B quit
(q) Terminates the session, saving all undeleted,
unsaved messages in the user's mbox file in his login directory,
preserving all messages marked with hold or preserve
or never referenced in his system mailbox,
and removing all other messages from his system mailbox.
If new mail has arrived during the session,
the message `\fIYou have new mail\fR' is given.
If given while editing a mailbox file with the \-f flag,
then the edit file is rewritten.
A return to the Shell is effected,
unless the rewrite of edit file fails,
in which case the user can escape
with the exit command.
.TP
.B redirect
(red) Same as
.IR resend .
.TP
.B Redirect
(Red) Same as
.IR Resend .
.TP
.B remove
(rem) Removes the named folders.
The user is asked for confirmation
in interactive mode.
.TP
.B rename
(ren) Takes the name of an existing folder
and the name for the new folder
and renames the first to the second one.
Both folders must be of the same type
and must be located on the current server for IMAP.
.TP
.B Reply
(R) Reply to originator.
Does not reply to other recipients
of the original message.
.TP
.BR reply
(r) Takes a message list and sends mail
to the sender and all recipients of the specified message.
The default message must not be deleted.
.TP
.B replyall
Similar to
.IR reply ,
but responds to all recipients regardless of the
.I flipr
and
.I Replyall
variables.
.TP
.B replysender
Similar to
.IR Reply ,
but responds to the sender only regardless of the
.I flipr
and
.I Replyall
variables.
.TP
.B Resend
Like
.IR resend ,
but does not add any header lines.
This is not a way to hide the sender's identity,
but useful for sending a message again
to the same recipients.
.TP
.B resend
Takes a list of messages and a user name
and sends each message to the named user.
`Resent-From:' and related header fields are prepended
to the new copy of the message.
.TP
.B Respond
Same as
.IR Reply .
.TP
.B respond
Same as
.IR reply .
.TP
.B respondall
Same as
.IR replyall .
.TP
.B respondsender
Same as
.IR replysender .
.TP
.B retain
Add the list of header fields named to the retained list.
Only the header fields in the retain list are shown
on the terminal when a message is printed.
All other header fields are suppressed.
The Type and Print commands can be used
to print a message in its entirety.
If retain is executed with no arguments,
it lists the current set of retained fields.
.TP
.B Save
(S)
Similar to
.IR save ,
but saves the messages
in a file named after the local part
of the sender of the first message
instead of taking a filename argument.
.TP
.B save
(s) Takes a message list and a filename
and appends each message
in turn to the end of the file.
If no filename is given,
the mbox file is used.
The filename in quotes,
followed by the line count and character count
is echoed on the user's terminal.
If editing a system mailbox,
the messages are marked for deletion.
Compressed files and IMAP mailboxes are handled as described for the
.I \-f
command line option above.
.TP
.B savediscard
Same as saveignore.
.TP
.B saveignore
Saveignore is to save what ignore is to print and type.
Header fields thus marked are filtered out
when saving a message by save
or when automatically saving to mbox.
This command should only be applied to header fields
that do not contain information needed to decode the message,
as MIME content fields do.
If saving messages on an IMAP account,
ignoring fields makes it impossible
to copy the data directly on the server,
thus operation usually becomes much slower.
.TP
.B saveretain
Saveretain is to save what retain is to print and type.
Header fields thus marked are the only ones
saved with a message when saving by save
or when automatically saving to mbox.
Saveretain overrides saveignore.
The use of this command is strongly discouraged
since it may strip header fields
that are needed to decode the message correctly.
.TP
.B score
(sc) Takes a message list and a floating point number
and adds the number to the score of each given message.
All messages start at score 0 when a folder is opened.
When the score of a message becomes negative, it is `killed'
with the effects described for the
.I kill
command;
otherwise if it was negative before and becomes positive,
it is `unkilled'.
Scores only refer to the currently opened instance of a folder.
.TP
.B set
(se) With no arguments, prints all variable values,
piped through the pager if the output does not fit on the screen.
Otherwise, sets option.
Arguments are of the form option=value
(no space before or after =)
or option.
Quotation marks may be placed around any part of the
assignment statement to quote blanks
or tabs, i.\|e. `\fIset indentprefix="\->"\fR'.
If an argument begins with
.BR no ,
as in `\fBset no\fIsave\fR',
the effect is the same as invoking the
.I unset
command with the remaining part of the variable
(`\fIunset \fIsave\fR').
.TP
.B seen
Takes a message list and marks all messages as having been read.
.TP
.B shell
(sh) Invokes an interactive version of the shell.
.TP
.B shortcut
Defines a shortcut name and its string for expansion,
as described for the
.I folder
command.
With no arguments,
a list of defined shortcuts is printed.
.TP
.B show
(Sh) Like
.IR print ,
but performs neither MIME decoding nor decryption
so that the raw message text is shown.
.TP
.B size
Takes a message list and prints out
the size in characters of each message.
.TP
.B sort
Create a sorted representation of the current folder,
and change the
.I next
command and the addressing modes
such that they refer to messages in the sorted order.
Message numbers are the same as in regular mode.
If the
.I header
variable is set,
a header summary in the new order is also printed.
Possible sorting criteria are:
.RS
.TP
.B date
Sort the messages by their `Date:' field,
that is by the time they were sent.
.TP
.B from
Sort messages by the value of their `From:' field,
that is by the address of the sender.
If the
.I showname
variable is set,
the sender's real name (if any) is used.
.TP
.B size
Sort the messages by their size.
.TP
.B score
Sort the messages by their score.
.TP
.B status
Sort the messages by their message status
(new, read, old, etc.).
.TP
.B subject
Sort the messages by their subject.
.TP
.B thread
Create a threaded order,
as with the
.I thread
command.
.TP
.B to
Sort messages by the value of their `To:' field,
that is by the address of the recipient.
If the
.I showname
variable is set,
the recipient's real name (if any) is used.
.RE
.IP
If no argument is given,
the current sorting criterion is printed.
.TP
.B source
The source command reads commands from a file.
.TP
.B thread
(th) Create a threaded representation of the current folder,
i.\|e. indent messages that are replies to other messages
in the header display,
and change the
.I next
command and the addressing modes
such that they refer to messages in the threaded order.
Message numbers are the same as in unthreaded mode.
If the
.I header
variable is set,
a header summary in threaded order is also printed.
.TP
.B top
Takes a message list and prints the top few lines of each.
The number of lines printed is controlled
by the variable toplines
and defaults to five.
.TP
.B touch
Takes a message list
and marks the messages for saving in the
.I mbox
file.
.I mailx
deviates from the POSIX standard with this command,
as a `next' command issued after `mbox'
will display the following message,
not the current one.
.TP
.B Type
(T) Identical to the Print command.
.TP
.B type
(t) A synonym for print.
.TP
.B unalias
Takes a list of names defined by alias commands
and discards the remembered groups of users.
The group names no longer have any significance.
.TP
.B unanswered
Takes a message list and marks each message
as not having been answered.
.TP
.B uncollapse
(unc)
Only applicable to threaded mode.
Takes a message list
and makes the message and all replies to it visible
in header summaries again.
When a message becomes the current message,
it is automatically made visible.
Also when a message with collapsed replies is printed,
all of these are automatically uncollapsed.
.TP
.B undef
Undefines each of the named macros.
It is not an error to use a name that does not belong to
one of the currently defined macros.
.TP
.B undelete
(u) Takes a message list and marks each message as not being deleted.
.TP
.B undraft
Takes a message list and marks each message
as a draft.
.TP
.B unflag
Takes a message list and marks each message as not being `flagged'.
.TP
.B unfwdignore
Removes the header field names
from the list of ignored fields for the
.I forward
command.
.TP
.B unfwdretain
Removes the header field names
from the list of retained fields for the
.I forward
command.
.TP
.B ungood
Takes a message list and undoes the effect of a
.I good
command that was previously applied on exactly these messages.
.TP
.B unignore
Removes the header field names
from the list of ignored fields.
.TP
.B unjunk
Takes a message list and undoes the effect of a
.I junk
command that was previously applied on exactly these messages.
.TP
.B unkill
Takes a message list and `unkills' each message.
Also sets the score of the messages to 0.
.TP
.B Unread
Same as
.IR unread .
.TP
.B unread
(U) Takes a message list and marks each message
as not having been read.
.TP
.B unretain
Removes the header field names
from the list of retained fields.
.TP
.B unsaveignore
Removes the header field names
from the list of ignored fields for saving.
.TP
.B unsaveretain
Removes the header field names
from the list of retained fields for saving.
.TP
.B unset
Takes a list of option names and discards their remembered
values;
the inverse of set.
.TP
.B unshortcut
Deletes the shortcut names given as arguments.
.TP
.B unsort
Disable sorted or threaded mode (see the
.I sort
and
.I thread
commands), return to normal message order
and,
if the
.I header
variable is set,
print a header summary.
.TP
.B unthread
(unth) Same as
.IR unsort .
.TP
.B verify
(verif)
Takes a message list and verifies each message.
If a message is not an S/MIME signed message,
verification will fail for it.
The verification process checks
if the message was signed using a valid certificate,
if the message sender's email address matches
one of those contained within the certificate,
and if the message content has been altered.
.TP
.B visual
(v) Takes a message list and invokes the display editor
on each message.
Modified contents are discarded
unless the
.I writebackedited
variable is set.
.TP
.B write
(w) For conventional messages,
the body without all headers is written.
The output is decrypted and converted
to its native format, if necessary.
If the output file exists,
the text is appended.\(emIf a message is in MIME multipart format,
its first part is written to the specified file
as for conventional messages,
and the user is asked for a filename
to save each other part;
if the contents of the first part are not to be saved,
`write /dev/null' can be used.
For the second and subsequent parts,
if the filename given starts with a `|' character,
the part is piped through the remainder of the filename
interpreted as a shell command.
In non-interactive mode, only the parts of the multipart message
that have a filename given in the part header are written,
the other are discarded.
The original message is never marked for deletion
in the originating mail folder.
For attachments,
the contents of the destination file are overwritten
if the file previously existed.
No special handling of compressed files is performed.
.TP
.B xit
(x) A synonym for exit.
.TP
.B z
\fIMailx\fR presents message headers in windowfuls
as described under the headers command.
The z command scrolls to the next window of messages.
If an argument is given,
it specifies the window to use.
A number prefixed by `+' or `\-' indicates
that the window is calculated in relation
to the current position.
A number without a prefix specifies an
absolute window number,
and a `$' lets \fImailx\fR scroll
to the last window of messages.
.TP
.B Z
Similar to
.IR z ,
but scrolls to the next or previous window
that contains at least one new or `flagged' message.
.SS "Tilde escapes"
Here is a summary of the tilde escapes,
which are used when composing
messages to perform special functions.
Tilde escapes are only recognized
at the beginning of lines.
The name `\fItilde escape\fR' is somewhat of a misnomer
since the actual escape character can be set
by the option escape.
.TP
.BI ~! command
Execute the indicated shell command,
then return to the message.
.TP
.B ~.
Same effect as typing the end-of-file character.
.TP
.BI ~< filename
Identical to ~r.
.TP
.BI ~<! command
Command is executed using the shell.
Its standard output is inserted into the message.
.TP
\fB~@\fR [\fIfilename\fR .\ .\ . ]
With no arguments, edit the attachment list.
First, the user can edit all existing attachment data.
If an attachment's file name is left empty,
that attachment is deleted from the list.
When the end of the attachment list is reached,
.I mailx
will ask for further attachments,
until an empty file name is given.
If \fIfilename\fP arguments are specified,
all of them are appended to the end of the attachment list.
Filenames which contain white space
can only be specified
with the first method (no \fIfilename\fP arguments).
.TP
.B ~A
Inserts the string contained in the
.I Sign
variable
(same as `~i Sign').
The escape sequences `\fB\et\fR' (tabulator) and `\fB\en\fR' (newline)
are understood.
.TP
.B ~a
Inserts the string contained in the
.B sign
variable
(same as `~i sign').
The escape sequences `\fB\et\fR' (tabulator) and `\fB\en\fR' (newline)
are understood.
.TP
.BI ~b "name .\ .\ ."
Add the given names to the list of carbon copy recipients
but do not make the names visible in the Cc: line
(`blind' carbon copy).
.TP
.BI ~c "name .\ .\ ."
Add the given names to the list of carbon copy recipients.
.TP
.B ~d
Read the file `dead.letter' from the user's home directory
into the message.
.TP
.B ~e
Invoke the text editor on the message collected so far.
After the editing session is finished,
the user may continue appending text
to the message.
.TP
.BI ~f messages
Read the named messages into the message being sent.
If no messages are specified,
read in the current message.
Message headers currently being ignored
(by the ignore or retain command)
are not included.
For MIME multipart messages,
only the first printable part is included.
.TP
.BI ~F messages
Identical to ~f, except all message headers and
all MIME parts are included.
.TP
.B ~h
Edit the message header fields
`To:', `Cc:', `Bcc:', and `Subject:'
by typing each one in turn
and allowing the user to append text
to the end or modify the field
by using the current terminal erase and kill characters.
.TP
.B ~H
Edit the message header fields
`From:', `Reply-To:', `Sender:', and `Organization:'
in the same manner as described for
.IR ~h .
The default values for these fields originate from the
.IR from ,
.IR replyto ,
and
.I ORGANIZATION
variables.
If this tilde command has been used,
changing the variables has no effect on the current message anymore.
.TP
.BI ~i variable
Insert the value of the specified variable
into the message adding a newline character at the end.
If the variable is unset or empty,
the message remains unaltered.
The escape sequences `\fB\et\fR' (tabulator) and `\fB\en\fR' (newline)
are understood.
.TP
.BI ~m messages
Read the named messages into the message being sent,
indented by a tab or by the value of indentprefix.
If no messages are specified,
read the current message.
Message headers currently being ignored
(by the ignore or retain command)
are not included.
For MIME multipart messages,
only the first printable part is included.
.TP
.BI ~M messages
Identical to ~m, except all message headers and
all MIME parts are included.
.TP
.B ~p
Print out the message collected so far,
prefaced by the message header fields
and followed by the attachment list, if any.
If the message text is longer than the screen size,
it is piped through the pager.
.TP
.B ~q
Abort the message being sent,
copying the message to
`dead.letter' in the user's home directory
if save is set.
.TP
.BI ~r filename
Read the named file into the message.
.TP
.BI ~s string
Cause the named string to become the current subject field.
.TP
.BI ~t "name .\ .\ ."
Add the given names to the direct recipient list.
.TP
.B ~v
Invoke an alternate editor
(defined by the VISUAL option)
on the message collected so far.
Usually, the alternate editor
will be a screen editor.
After the editor is quit,
the user may resume appending text
to the end of the message.
.TP
.BI ~w filename
Write the message onto the named file.
If the file exists,
the message is appended to it.
.TP
.B ~x
Same as ~q,
except that the message is not saved to the `dead.letter' file.
.TP
.BI ~| command
Pipe the message through the command as a filter.
If the command gives no output or terminates abnormally,
retain the original text of the message.
The command
.IR fmt (1)
is often used
as command to rejustify the message.
.TP
.BI ~: mailx-command
Execute the given \fImailx\fR command.
Not all commands, however, are allowed.
.TP
.BI ~_ mailx-command
Identical to ~:.
.TP
.BI ~~ string
Insert the string of text in the message
prefaced by a single ~.
If the escape character has been changed,
that character must be doubled
in order to send it at the beginning of a line.
.SS "Variable options"
Options are controlled via set and unset commands,
see their entries for a syntax description.
An option is also set
if it is passed to \fImailx\fR
as part of the environment
(this is not restricted to specific variables as in the POSIX standard).
A value given in a startup file overrides
a value imported from the environment.
Options may be either binary,
in which case it is only significant
to see whether they are set or not;
or string, in which case the actual value is of interest.
.SS "Binary options"
.PP
The binary options include the following:
.TP
.B allnet
Causes only the local part to be evaluated
when comparing addresses.
.TP
.B append
Causes messages saved in mbox to be appended to the end
rather than prepended.
This should always be set.
.TP
.BR ask \ or \ asksub
Causes \fImailx\fR to prompt for the subject
of each message sent.
If the user responds with simply a newline,
no subject field will be sent.
.TP
.B askatend
Causes the prompts for `Cc:' and `Bcc:' lists
to appear after the message has been edited.
.TP
.B askattach
If set, \fImailx\fR asks for files to attach at the end of each message.
Responding with a newline indicates not to include an attachment.
.TP
.B askcc
Causes the user to be prompted
for additional carbon copy recipients
(at the end of each message if
.I askatend
or
.I bsdcompat
is set).
Responding with a newline
indicates the user's satisfaction with the current list.
.TP
.B askbcc
Causes the user to be prompted
for additional blind carbon copy recipients
(at the end of each message if
.I askatend
or
.I bsdcompat
is set).
Responding with a newline
indicates the user's satisfaction with the current list.
.TP
.B asksign
Causes the user to be prompted
if the message is to be signed
at the end of each message.
The
.I smime-sign
variable is ignored when this variable is set.
.TP
.B autocollapse
Causes threads to be collapsed automatically when
threaded mode is entered
(see the
.I collapse
command).
.TP
.B autoinc
Same as
.IR newmail .
.TP
.B autoprint
Causes the delete command to behave like dp \-
thus, after deleting a message,
the next one will be typed automatically.
.TP
.B autothread
Causes threaded mode (see the
.I thread
command) to be entered automatically
when a folder is opened.
.TP
.B bang
Enables the substitution of `\fB!\fR'
by the contents of the last command line
in shell escapes.
.TP
.B bsdannounce
Causes automatic display of a header summary after executing a
.I folder
command.
.TP
.B bsdcompat
Sets some cosmetical features to traditional BSD style;
has the same affect as setting `askatend' and
all other variables prefixed with `bsd',
setting prompt to `&\ ', and changing the default pager to
.IR more .
.TP
.B bsdflags
Changes the letters printed in the first column of a header summary
to traditional BSD style.
.TP
.B bsdheadline
Changes the display of columns in a header summary
to traditional BSD style.
.TP
.B bsdmsgs
Changes some informational messages
to traditional BSD style.
.TP
.B bsdorder
Causes the `Subject:' field to appear
immediately after the `To:' field
in message headers and with the
.I ~h
tilde command.
.TP
.B bsdset
Changes the output format of the
.I set
command to traditional BSD style.
.TP
.B chained-junk-tokens
Normally, the Bayesian junk mail filter bases its classifications
on single word tokens extracted from messages.
If this option is set,
adjacent words are combined to pairs,
which are then used as additional tokens.
This usually improves the accuracy of the filter,
but also increases the junk mail database
five- to tenfold.
.TP
.B datefield
The date in a header summary
is normally the date of the mailbox `From\ ' line of the message.
If this variable is set,
the date as given in the `Date:' header field is used,
converted to local time.
.TP
.B debug
Prints debugging messages and disables the actual delivery of messages.
Unlike
.IR verbose ,
this option is intended for
.I mailx
development only.
.TP
.B disconnected
When an IMAP mailbox is selected and this variable is set,
no connection to the server is initiated.
Instead, data is obtained from the local cache (see
.IR imap-cache ).
Mailboxes that are not present in the cache
and messages that have not yet entirely been fetched from the server
are not available;
to fetch all messages in a mailbox at once,
the command `copy * /dev/null' can be used
while still in
.I online
mode.
Changes that are made to IMAP mailboxes in disconnected mode
are queued and committed later
when a connection to that server is opened in online mode.
This procedure is not completely reliable
since it cannot be guaranteed that the IMAP unique identifiers (UIDs)
on the server still match the ones in the cache at that time.
Data is saved to `dead.letter' when this problem occurs.
.TP
\fBdisconnected-\fIuser\fB@\fIhost\fR
The specified account is handled as described for the
.I disconnected
variable above,
but other accounts are not affected.
.TP
.B dot
The binary option dot causes \fImailx\fR to interpret
a period alone on a line
as the terminator of a message the user is sending.
.TP
.B editheaders
When a message is edited while being composed,
its header is included in the editable text.
`To:', `Cc:', `Bcc:', `Subject:', `From:', `Reply-To:', `Sender:',
and 'Organization:'
fields are accepted within the header,
other fields are ignored.
.TP
.B emptybox
If set, an empty mailbox file is not removed.
This may improve the interoperability with other mail user agents
when using a common folder directory.
.TP
.B emptystart
If the mailbox is empty,
\fImailx\fR normally prints \fI`No mail for user'\fR
and exits immediately.
If this option is set,
\fImailx\fR starts even with an empty mailbox.
.TP
.B expandaddr
Causes
.I mailx
to expand message recipient addresses, as explained in the section,
Recipient address specifications.
.TP
.B flipr
Exchanges the
.I Respond
with the
.I respond
commands and vice-versa.
.TP
.B forward-as-attachment
Original messages are normally sent as inline text with the
.I forward
command,
and only the first part of a multipart message is included.
With this option,
messages are sent as MIME
.I message/rfc822
attachments,
and all of their parts are included.
The
.I fwdignore
and
.I fwdretain
options are ignored when the
.I forward-as-attachment
option is set.
.TP
.B fullnames
When replying to a message,
\fImailx\fR normally removes the comment parts of email addresses,
which by convention contain the full names of the recipients.
If this variable is set,
such stripping is not performed,
and comments are retained.
.TP
.B header
Causes the header summary to be written at startup
and after commands that affect the number of messages
or the order of messages in the current folder;
enabled by default.
.TP
.B hold
This option is used to hold messages
in the system mailbox by default.
.TP
.B ignore
Causes interrupt signals from the terminal
to be ignored and echoed as @'s.
.TP
.B ignoreeof
An option related to dot is ignoreeof
which makes \fImailx\fR refuse to
accept a control-d as the end of a message.
Ignoreeof also applies to \fImailx\fR command mode.
.TP
.B imap-use-starttls
Causes
.I mailx
to issue a STARTTLS command
to make an unencrypted IMAP session SSL/TLS encrypted.
This functionality is not supported by all servers,
and is not used if the session is already encrypted by the IMAPS method.
.TP
\fBimap-use-starttls-\fIuser\fB@\fIhost\fR
Activates
.I imap-use-starttls
for a specific account.
.TP
.B keep
This option causes \fImailx\fR to truncate the user's system mailbox
instead of deleting it when it is empty.
This should always be set,
since it prevents malicious users
from creating fake mail folders
in a world-writable spool directory.
.TP
.B keepsave
When a message is saved,
it is usually discarded
from the originating folder
when
.I mailx
is quit.
Setting this option
causes all saved message to be retained.
.TP
.B markanswered
When a message is replied to
and this variable is set,
it is marked as having been answered.
This mark has no technical meaning in the mail system;
it just causes messages to be marked in the header summary,
and makes them specially addressable.
.TP
.B metoo
Usually, when a group is expanded
that contains the sender,
the sender is removed from the expansion.
Setting this option causes
the sender to be included in the group.
.TP
.B newmail
Checks for new mail in the current folder
each time the prompt is printed.
For IMAP mailboxes,
the server is then polled for new mail,
which may result in delayed operation
if the connection to the server is slow.
A
.I maildir
folder must be re-scanned to determine
if new mail has arrived.
.IP
If this variable is set to the special value
.BR nopoll ,
an IMAP server is not actively asked for new mail,
but new mail may still be detected and announced
with any other IMAP command that is sent to the server.
A
.I maildir
folder is not scanned then.
.IP
In any case,
the IMAP server may send notifications about messages
that have been deleted on the server
by another process or client.
In this case, `Expunged \fIn\fR messages' is printed
regardless of this variable,
and message numbers may have changed.
.TP
.B noheader
Setting the option noheader is the same
as giving the \-N flag on the command line.
.TP
.B outfolder
Causes the filename given in the
.I record
variable
and the sender-based filenames for the
.I Copy
and
.I Save
commands
to be interpreted relative to the directory given in the
.I folder
variable rather than to the current directory
unless it is an absolute pathname.
.TP
.B page
If set, each message the \fIpipe\fR command prints out
is followed by a formfeed character.
.TP
.B piperaw
Send messages to the
.I pipe
command without performing MIME and character set conversions.
.TP
.B pop3-use-apop
If this variable is set,
the APOP authentication method is used
when a connection to a POP3 server is initiated.
The advantage of this method over the usual USER/PASS authentication is
that the password is not sent over the network in clear text.
The connection fails
if the server does not support the APOP command.
.TP
\fBpop3-use-apop-\fIuser\fB@\fIhost\fR
Enables
.I pop3-use-apop
for a specific account.
.TP
.B pop3-use-starttls
Causes
.I mailx
to issue a STLS command
to make an unencrypted POP3 session SSL/TLS encrypted.
This functionality is not supported by all servers,
and is not used if the session is already encrypted by the POP3S method.
.TP
\fBpop3-use-starttls-\fIuser\fB@\fIhost\fR
Activates
.I pop3-use-starttls
for a specific account.
.TP
.B print-all-chars
This option causes all characters to be considered printable.
It is only effective if given in a startup file.
With this option set,
some character sequences in messages
may put the user's terminal in an undefined state
when printed;
it should only be used as a last resort
if no working system locale can be found.
.TP
.B print-alternatives
When a MIME message part of type
.I multipart/alternative
is displayed and it contains a subpart of type
.IR text/plain ,
other parts are normally discarded.
Setting this variable causes all subparts to be displayed,
just as if the surrounding part was of type
.IR multipart/mixed .
.TP
.B quiet
Suppresses the printing of the version when first invoked.
.TP
.B record-resent
If both this variable and the
.I record
variable are set,
the
.I resend
and
.I Resend
commands save messages to the
.I record
folder as it is normally only done for newly composed messages.
.TP
.B reply-in-same-charset
If this variable is set,
.I mailx
first tries to use the same character set
of the original message for replies.
If this fails,
the
.I sendcharsets
variable is evaluated as usual.
.TP
.B Replyall
Reverses the sense of reply and Reply commands.
.TP
.B save
When the user aborts a message
with two RUBOUT (interrupt characters)
\fImailx\fR copies the partial letter
to the file `dead.letter' in the home directory.
This option is set by default.
.TP
.B searchheaders
If this option is set, then
a message-list specifier in the form `\fI/x:y\fR'
will expand to all messages containing
the substring `\fIy\fR' in the header field `\fIx\fR'.
The string search is case insensitive.
.TP
.B sendwait
When sending a message,
wait until the mail transfer agent exits
before accepting further commands.
If the mail transfer agent returns a non-zero exit status,
the exit status of mailx will also be non-zero.
.TP
.B showlast
Setting this option causes \fImailx\fR to start at the
last message instead of the first one when opening a mail folder.
.TP
.B showname
Causes
.I mailx
to use the sender's real name instead of the plain address
in the header field summary and in message specifications.
.TP
.B showto
Causes the recipient of the message to be shown in the header summary
if the message was sent by the user.
.TP
.B skipemptybody
If an outgoing message does not contain any text
in its first or only message part,
do not send it but discard it silently
(see also the
.I \-E
option).
.TP
.B smime-force-encryption
Causes
.I mailx
to refuse sending unencrypted messages.
.TP
.B smime-sign
If this variable is set,
outgoing messages are S/MIME signed with the user's private key.
Signing a message enables a recipient to verify
that the sender used a valid certificate,
that the email addresses in the certificate
match those in the message header,
and that the message content has not been altered.
It does not change the message text,
and people will be able to read the message as usual.
.TP
.B smime-no-default-ca
Do not load the default CA locations
when verifying S/MIME signed messages.
Only applicable if S/MIME support is built using OpenSSL.
.TP
.B smtp-use-starttls
Causes \fImailx\fR to issue a STARTTLS command
to make an SMTP session SSL/TLS encrypted.
Not all servers support this command;
because of common implementation defects,
it cannot be automatically determined
whether a server supports it or not.
.TP
.B ssl-no-default-ca
Do not load the default CA locations
to verify SSL/TLS server certificates.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-v2-allow
Accept SSLv2 connections.
These are normally not allowed
because this protocol version is insecure.
.TP
.B stealthmua
Inhibits the generation of
the \fI`Message-Id:'\fR and \fI`User-Agent:'\fR
header fields that include obvious references to \fImailx\fR.
There are two pitfalls associated with this:
First, the message id of outgoing messages is not known anymore.
Second, an expert may still use the remaining information in the header
to track down the originating mail user agent.
.TP
.B verbose
Setting the option verbose is the same
as using the \-v flag on the command line.
When \fImailx\fR runs in verbose mode,
details of the actual message delivery
and protocol conversations for IMAP, POP3, and SMTP,
as well as of other internal processes,
are displayed on the user's terminal,
This is sometimes useful to debug problems.
.I Mailx
prints all data that is sent to remote servers in clear texts,
including passwords,
so care should be taken that no unauthorized option
can view the screen if this option is enabled.
.TP
.B writebackedited
If this variable is set,
messages modified using the
.I edit
or
.I visual
commands are written back to the current folder when it is quit.
This is only possible for writable folders in
.I mbox
format.
Setting this variable also disables
MIME decoding and decryption for the editing commands.
.SS "String Options"
.PP
The string options include the following:
.TP
.B attrlist
A sequence of characters to print in the `attribute'
column of a header summary,
each for one type of messages in the following order:
new,
unread but old,
new but read,
read and old,
saved,
preserved,
mboxed,
flagged,
answered,
draft,
killed,
start of a collapsed thread,
collapsed,
classified as junk.
The default is `NUROSPMFATK+\-J',
or `NU\ \ *HMFATK+\-J' if
.I bsdflags
or the
.I SYSV3
environment variable
are set.
.TP
.B autobcc
Specifies a list of recipients to which
a blind carbon copy of each outgoing message
will be sent automatically.
.TP
.B autocc
Specifies a list of recipients to which
a carbon copy of each outgoing message
will be sent automatically.
.TP
.B autosort
Causes sorted mode (see the
.I sort
command) to be entered automatically
with the value of this option as sorting method
when a folder is opened.
.TP
.B cmd
The default value for the \fIpipe\fR command.
.TP
.B crt
The valued option crt is used as a threshold
to determine how long a message must be
before PAGER is used to read it.
If crt is set without a value,
then the height of the terminal screen stored in the system
is used to compute the threshold (see
.IR stty (1)).
.TP
.B DEAD
The name of the file to use
for saving aborted messages.
This defaults to `dead.letter'
in the user's home directory.
.TP
.B EDITOR
Pathname of the text editor to use
in the edit command and ~e escape.
If not defined,
then a default editor is used.
.TP
.B encoding
The default MIME encoding to use
in outgoing text messages and message parts.
Valid values are \fI8bit\fR or \fIquoted-printable\fR.
The default is \fI8bit\fR.
In case the mail transfer system
is not ESMTP compliant,
\fIquoted-printable\fR should be used instead.
If there is no need to encode a message,
\fI7bit\fR transfer mode is used,
without regard to the value of this variable.
Binary data is always encoded in \fIbase64\fR mode.
.TP
.B escape
If defined, the first character of this option
gives the character to use in the place of ~ to denote escapes.
.TP
.B folder
The name of the directory to use
for storing folders of messages.
All folder names that begin with `+'
refer to files below that directory.
If the directory name begins with a `/',
\fImailx\fR considers it to be an absolute pathname;
otherwise, the folder directory is found
relative to the user's home directory.
.IP
The directory name may also refer to an IMAP account;
any names that begin with `+'
then refer to IMAP mailboxes on that account.
An IMAP folder is normally given in the form
.sp
.nf
    imaps://mylogin@imap.myisp.example
.fi
.sp
In this case,
the `+' and `@' prefixes for folder names
have the same effect
(see the
.I folder
command).
.IP
Some IMAP servers do not accept the creation of mailboxes
in the hierarchy base;
they require that they are created as subfolders of `INBOX'.
With such servers,
a folder name of the form
.sp
.nf
    imaps://mylogin@imap.myisp.example/INBOX.\&
.fi
.sp
should be used
(the last character is the server's hierarchy delimiter).
Folder names prefixed by `+' will then refer to folders below `INBOX',
while folder names prefixed by `@'
refer to folders below the hierarchy base.
See the
.I imap namespace
command for a method to detect the appropriate prefix and delimiter.
.TP
.B folder-hook
When a folder is opened and this variable is set,
the macro corresponding to the value of this variable is executed.
The macro is also invoked when new mail arrives,
but message lists for commands executed from the macro
only include newly arrived messages then.
.TP
\fBfolder-hook-\fIfullname\fR
When a folder named
.I fullname
is opened,
the macro corresponding to the value of this variable is executed.
Unlike other folder specifications,
the fully expanded name of a folder, without metacharacters,
is used to avoid ambiguities.
The macro specified with
.I folder-hook
is not executed if this variable is effective for a folder
(unless it is explicitly invoked within the called macro).
.TP
.B from
The address (or a list of addresses)
to put into the \fI`From:'\fR field of the message header.
If replying to a message,
these addresses are handled as if they were in the alternates list.
.\" If this variable is set,
.\" a \fI`Sender:'\fR field containing the user's name
.\" is also generated,
.\" unless the variable \fIsmtp\fR is set
.\" and its value differs from \fIlocalhost\fR.
If the machine's hostname is not valid at the Internet
(for example at a dialup machine),
either this variable or
.I hostname
have to be set
to get correct Message-ID header fields.
If
.I from
contains more than one address,
the
.I sender
variable must also be set.
.TP
.B fwdheading
The string to print before the text of a message
with the
.I forward
command
(unless the
.I forward-as-attachment
variable is set).
Defaults to ``-------- Original Message --------'' if unset.
If it is set to the empty string,
no heading is printed.
.TP
.B headline
A format string to use for the header summary,
similar to
.I printf
formats.
A `%' character introduces a format specifier.
It may be followed by a number indicating the field width.
If the field is a number,
the width may be negative,
which indicates that it is to be left-aligned.
Valid format specifiers are:
.sp
.in +4m
.TS
l4fB l.
%a	Message attributes.
%c	The score of the message.
%d	The date when the message was received.
%e	The indenting level in threaded mode.
%f	The address of the message sender.
%i	The message thread structure.
%l	The number of lines of the message.
%m	Message number.
%o	The number of octets (bytes) in the message.
%s	Message subject (if any).
%S	Message subject (if any) in double quotes.
%t	The position in threaded/sorted order.
%>	A `>' for the current message, otherwise ` '.
%<	A `<' for the current message, otherwise ` '.
%%	A `%' character.
.TE
.in -4m
.IP
The default is `%>\&%a\&%m\ %18f\ %16d\ %4l/%\-5o\ %i%s',
or `%>\&%a\&%m\ %20f\ \ %16d\ %3l/%\-5o\ %i%S' if
.I bsdcompat
is set.
.TP
.B hostname
Use this string as hostname
when expanding local addresses
instead of the value obtained from
.IR uname (2)
and
.IR getaddrinfo (3).
.TP
.B imap-auth
Sets the IMAP authentication method.
Valid values are `login' for the usual password-based authentication
(the default),
`cram-md5', which is a password-based authentication
that does not send the password over the network in clear text,
and `gssapi' for GSSAPI-based authentication.
.TP
\fBimap-auth-\fIuser\fB@\fIhost\fR
Sets the IMAP authentication method for a specific account.
.TP
.B imap-cache
Enables caching of IMAP mailboxes.
The value of this variable must point to a directory
that is either existent or can be created by
.IR mailx .
All contents of the cache can be deleted by
.I mailx
at any time;
it is not safe to make assumptions about them.
.TP
.B imap-keepalive
IMAP servers may close the connection
after a period of inactivity;
the standard requires this to be at least 30 minutes,
but practical experience may vary.
Setting this variable to a numeric
.I value
greater than 0
causes a NOOP command to be sent each
.I value
seconds if no other operation is performed.
.TP
.B imap-list-depth
When retrieving the list of folders on an IMAP server, the
.I folders
command stops after it has reached a certain depth
to avoid possible infinite loops.
The value of this variable sets the maximum depth allowed.
The default is 2.
If the folder separator on the current IMAP server is a slash `/',
this variable has no effect,
and the
.I folders
command does not descend to subfolders.
.TP
.B indentprefix
String used by the `\fI~m\fR' and `\fI~M\fR' tilde escapes
and by the \fIquote\fR option
for indenting messages,
in place of the normal tab character (^I).
Be sure to quote the value
if it contains spaces or tabs.
.TP
.B junkdb
The location of the junk mail database.
The string is treated like a folder name,
as described for the
.I folder
command.
.IP
The files in the junk mail database are normally stored in
.IR compress (1)
format for saving space.
If processing time is considered more important,
.IR uncompress (1)
can be used to store them in plain form.
.I Mailx
will then work using the uncompressed files.
.TP
.B LISTER
Pathname of the directory lister
to use in the
.I folders
command
when operating on local mailboxes.
Default is /bin/ls.
.TP
.B MAIL
Is used as the user's mailbox, if set.
Otherwise, a system-dependent default is used.
Can be a
\fIprotocol\fB://\fR
string (see the
.I folder
command for more information).
.TP
.B MAILX_HEAD
A string to put at the beginning of each new message.
The escape sequences `\fB\et\fR' (tabulator) and `\fB\en\fR' (newline)
are understood.
.TP
.B MAILX_TAIL
A string to put at the end of each new message.
The escape sequences `\fB\et\fR' (tabulator) and `\fB\en\fR' (newline)
are understood.
.TP
.B maximum-unencoded-line-length
Messages that contain lines longer than the value of this variable
are encoded in quoted-printable
even if they contain only ASCII characters.
The maximum effective value is 950.
If set to 0,
all ASCII text messages are encoded in quoted-printable.
S/MIME signed messages are always encoded
in quoted-printable regardless of the value of this variable.
.TP
.B MBOX
The name of the mbox file.
It can be the name of a folder.
The default is `\fImbox\fR'
in the user's home directory.
.TP
.B NAIL_EXTRA_RC
The name of an optional startup file
to be read after ~/.mailrc.
This variable is ignored if it is imported from the environment;
it has an effect only if it is set in /etc/nail.rc or ~/.mailrc
to allow bypassing the configuration with e. g. `MAILRC=/dev/null'.
Use this file for commands
that are not understood by other mailx implementations.
.TP
.B newfolders
If this variable has the value
.BR maildir ,
newly created local folders will be in
.I maildir
format.
.TP
.B nss-config-dir
A directory that contains the files
.RI cert N .db
to retrieve certificates,
.RI key N .db
to retrieve private keys,
and secmod.db,
where
.I N
is a digit.
These are usually taken from Mozilla installations,
so an appropriate value might be
`~/.mozilla/firefox/default.clm'.
.I Mailx
opens these files read-only
and does not modify them.
However, if the files are modified by Mozilla
while
.I mailx
is running,
it will print a `Bad database' message.
It may be necessary to create copies of these files
that are exclusively used by
.I mailx
then.
Only applicable if S/MIME and SSL/TLS support is built using
Network Security Services (NSS).
.TP
.B ORGANIZATION
The value to put into the \fI`Organization:'\fR field of the message header.
.TP
.B PAGER
Pathname of the program to use
in the more command
or when crt variable is set.
The default paginator
.IR pg (1)
or, in BSD compatibility mode,
.IR more (1)
is used
if this option is not defined.
.TP
\fBpassword-\fIuser\fB@\fIhost\fR
Set the password for
.I user
when connecting to
.IR host .
If no such variable is defined for a host,
the user will be asked for a password on standard input.
Specifying passwords in a startup file
is generally a security risk,
the file should be readable
by the invoking user only.
.TP
.BI pipe- content/subcontent
When a MIME message part of
.I content/subcontent
type is displayed or it is replied to,
its text is filtered through the value of this variable
interpreted as a shell command.
Special care must be taken when using such commands
as mail viruses may be distributed by this method;
if messages of type
.I application/x-sh
were filtered through the shell, for example,
a message sender could easily execute arbitrary code
on the system
.I mailx
is running on.
.TP
.B pop3-keepalive
POP3 servers may close the connection
after a period of inactivity;
the standard requires this to be at least 10 minutes,
but practical experience may vary.
Setting this variable to a numeric
.I value
greater than 0
causes a NOOP command to be sent each
.I value
seconds if no other operation is performed.
.TP
.B prompt
The string printed when a command is accepted.
Defaults to `\fB?\ \fR',
or to `\fB&\ \fR' if the
.I bsdcompat
variable is set.
.TP
.B quote
If set, \fImailx\fR starts a replying message with the original message prefixed
by the value of the variable \fIindentprefix\fR.
Normally, a heading consisting of `Fromheaderfield wrote:' is printed
before the quotation.
If the string \fInoheading\fR is assigned to the \fIquote\fR variable,
this heading is omitted.
If the string \fIheaders\fR is assigned,
the headers selected by the ignore/retain commands
are printed above the message body,
thus \fIquote\fR acts like an automatic ~m command then.
If the string \fIallheaders\fR is assigned,
all headers are printed above the message body,
and all MIME parts are included,
thus \fIquote\fR acts like an automatic ~M command then.
.TP
.B record
If defined, gives the pathname of the folder
used to record all outgoing mail.
If not defined,
then outgoing mail is not so saved.
When saving to this folder fails,
the message is not sent
but saved to the `dead.letter' file instead.
.TP
.B replyto
A list of addresses to put into the \fI`Reply-To:'\fR field
of the message header.
If replying to a message, such addresses are handled
as if they were in the alternates list.
.TP
.B screen
When \fImailx\fR initially prints the message headers,
it determines the number to print
by looking at the speed of the terminal.
The faster the terminal, the more it prints.
This option overrides this calculation
and specifies how many message headers
are printed.
This number is also used
for scrolling with the z command.
.TP
.B sendcharsets
A comma-separated list of character set names
that can be used in Internet mail.
When a message that contains characters not representable in US-ASCII
is prepared for sending,
.I mailx
tries to convert its text
to each of the given character sets in order
and uses the first appropriate one.
The default is `utf-8'.
.IP
Character sets assigned to this variable should be ordered
in ascending complexity.
That is, the list should start with e.\|g.
`iso-8859-1' for compatibility with older mail clients,
might contain some other language-specific character sets,
and should end with `utf-8'
to handle messages that combine texts in multiple languages.
.TP
.B sender
An address that is put into the `Sender:' field
of outgoing messages.
This field needs not normally be present.
It is, however, required
if the `From:' field contains more than one address.
It can also be used to indicate that a message
was sent on behalf of somebody other;
in this case, `From:' should contain the address
of the person that took responsibility for the message,
and `Sender:' should contain the address
of the person that actually sent the message.
The
.I sender
address is handled as if it were in the
.I alternates
list.
.TP
.B sendmail
To use an alternate mail delivery system,
set this option to the full pathname
of the program to use.
This should be used with care.
.TP
.B SHELL
Pathname of the shell to use
in the ! command and the ~! escape.
A default shell is used
if this option is not defined.
.TP
.TP
.B Sign
A string for use with the
.I ~A
command.
.TP
.B sign
A string for use with the
.I ~a
command.
.TP
.B signature
Must correspond to the name of a readable file if set.
The file's content is then appended to each singlepart message
and to the first part of each multipart message.
Be warned that there is no possibility
to edit the signature for an individual message.
.TP
.B smime-ca-dir
Specifies a directory with CA certificates for verification
of S/MIME signed messages.
The format is the same as described in
.IR SSL_CTX_load_verify_locations (3).
Only applicable if S/MIME support is built using OpenSSL.
.TP
.B smime-ca-file
Specifies a file with CA certificates for verification
of S/MIME signed messages.
The format is the same as described in
.IR SSL_CTX_load_verify_locations (3).
Only applicable if S/MIME support is built using OpenSSL.
.TP
\fBsmime-cipher-\fIuser@host\fR
Specifies a cipher to use when generating S/MIME encrypted messages
for
.IR user@host .
Valid ciphers are
.B rc2-40
(RC2 with 40 bits),
.B rc2-64
(RC2 with 64 bits),
.B des
(DES, 56 bits)
and
.B des-ede3
(3DES, 112/168 bits).
The default is 3DES.
It is not recommended to use the other ciphers
unless a recipient's client is actually unable to handle 3DES
since they are comparatively weak;
but even so, the recipient should upgrade his software in preference.
.TP
.B smime-crl-file
Specifies a file that contains a CRL in PEM format
to use when verifying S/MIME messages.
Only applicable if S/MIME support is built using OpenSSL.
.TP
.B smime-crl-dir
Specifies a directory that contains files with CRLs in PEM format
to use when verifying S/MIME messages.
Only applicable if S/MIME support is built using OpenSSL.
.TP
\fBsmime-encrypt-\fIuser@host\fR
If this variable is set,
messages to
.I user@host
are encrypted before sending.
If S/MIME support is built using OpenSSL,
the value of the variable must be set to the name of a file
that contains a certificate in PEM format.
If S/MIME support is built using NSS,
the value of this variable is ignored,
but if multiple certificates for
.I user@host
are available, the
.I smime-nickname-user@host
variable should be set.
Otherwise a certificate for the recipient
is automatically retrieved from the certificate database,
if possible.
.IP
If a message is sent to multiple recipients,
each of them for whom a corresponding variable is set
will receive an individually encrypted message;
other recipients will continue to receive the message in plain text
unless the
.I smime-force-encryption
variable is set.
It is recommended to sign encrypted messages,
i.\|e. to also set the
.I smime-sign
variable.
.TP
\fBsmime-nickname-\fIuser@host\fR
Specifies the nickname of a certificate
to be used when encrypting messages for
.I user@host .
Only applicable if S/MIME support is built using NSS.
.TP
.B smime-sign-cert
Points to a file in PEM format
that contains the user's private key
as well as his certificate.
Both are used with S/MIME
for signing and decrypting messages.
Only applicable if S/MIME support is built using OpenSSL.
.TP
\fBsmime-sign-cert-\fIuser@host\fR
Overrides
.I smime-sign-cert
for the specific addresses.
When signing messages and the value of the
.I from
variable is set
to
.IR user@host ,
the specific file is used.
When decrypting messages,
their recipient fields (To: and Cc:) are searched for addresses
for which such a variable is set.
.I Mailx
always uses the first address that matches,
so if the same message is sent to more than one
of the user's addresses using different encryption keys,
decryption might fail.
Only applicable if S/MIME support is built using OpenSSL.
.TP
.B smime-sign-nickname
Specifies that the named certificate be used for signing mail.
If this variable is not set,
but a single certificate matching the current
.I from
address is found in the database,
that one is used automatically.
Only applicable if S/MIME support is built using NSS.
.TP
\fBsmime-sign-nickname-\fIuser@host\fR
Overrides
.I smime-sign-nickname
for a specific address.
Only applicable if S/MIME support is built using NSS.
.TP
.B smtp
Normally, \fImailx\fR invokes
.IR sendmail (8)
directly to transfer messages.
If the \fIsmtp\fR variable is set, a SMTP connection to
the server specified by the value of this variable
is used instead.
If the SMTP server does not use the standard port,
a value of \fIserver:port\fR can be given,
with \fIport\fR as a name or as a number.
.IP
There are two possible methods to get SSL/TLS encrypted SMTP sessions:
First, the STARTTLS command can be used to encrypt a session
after it has been initiated,
but before any user-related data has been sent; see
.I \%smtp-use-starttls
above.
Second, some servers accept sessions that are encrypted
from their beginning on. This mode is configured by assigning
\fBsmtps://\fIserver\fR[\fB:\fIport\fR]
to the
.I smtp
variable.
.IP
The SMTP transfer is executed in a child process;
unless either the
.I sendwait
or the
.I verbose
variable is set,
this process runs asynchronously.
If it receives a TERM signal,
it will abort and save the message to the `dead.letter' file.
.TP
.B smtp-auth
Sets the SMTP authentication method.
If set to `login',
or if unset and smtp-auth-user is set,
AUTH LOGIN is used.
If set to `cram-md5',
AUTH CRAM-MD5 is used;
if set to `plain',
AUTH PLAIN is used.
Otherwise,
no SMTP authentication is performed.
.TP
\fBsmtp-auth-\fIuser\fB@\fIhost\fR
Overrides
.I smtp-auth
for specific values of sender addresses,
depending on the
.I from
variable.
.TP
.B smtp-auth-password
Sets the global password for SMTP AUTH.
Both user and password have to be given
for AUTH LOGIN and AUTH CRAM-MD5.
.TP
\fBsmtp-auth-password-\fIuser\fB@\fIhost\fR
Overrides
.I smtp-auth-password
for specific values of sender addresses,
depending on the
.I from
variable.
.TP
.B smtp-auth-user
Sets the global user name for SMTP AUTH.
Both user and password have to be given
for AUTH LOGIN and AUTH CRAM-MD5.
.IP
If this variable is set but neither
.I smtp-auth-password
or a matching
.I smtp-auth-password-user@host
can be found,
.I mailx
will as for a password on the user's terminal.
.TP
\fBsmtp-auth-user-\fIuser\fB@\fIhost\fR
Overrides
.I smtp-auth-user
for specific values of sender addresses,
depending on the
.I from
variable.
.TP
.B ssl-ca-dir
Specifies a directory with CA certificates for verification
of SSL/TLS server certificates.
See
.IR SSL_CTX_load_verify_locations (3)
for more information.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-ca-file
Specifies a file with CA certificates for verification
of SSL/TLS server certificates.
See
.IR SSL_CTX_load_verify_locations (3)
for more information.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-cert
Sets the file name 
for a SSL/TLS client certificate
required by some servers.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
\fBssl-cert-\fIuser\fB@\fIhost\fR
Sets an account-specific file name
for a SSL/TLS client certificate
required by some servers.
Overrides
.I ssl-cert
for the specified account.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-cipher-list
Specifies a list of ciphers for SSL/TLS connections.
See ciphers(1) for more information.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-crl-file
Specifies a file that contains a CRL in PEM format
to use when verifying SSL/TLS server certificates.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-crl-dir
Specifies a directory that contains files with CRLs in PEM format
to use when verifying SSL/TLS server certificates.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-key
Sets the file name
for the private key of a SSL/TLS client certificate.
If unset, the name of the certificate file is used.
The file is expected to be in PEM format.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
\fBssl-key-\fIuser\fB@\fIhost\fR
Sets an account-specific file name
for the private key of a SSL/TLS client certificate.
Overrides
.I ssl-key
for the specified account.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-method
Selects a SSL/TLS protocol version;
valid values are `ssl2', `ssl3', and `tls1'.
If unset, the method is selected automatically,
if possible.
.TP
\fBssl-method-\fIuser\fB@\fIhost\fR
Overrides
.I ssl-method
for a specific account.
.TP
.B ssl-rand-egd
Gives the pathname to an entropy daemon socket,
see
.IR RAND_egd (3).
.TP
.B ssl-rand-file
Gives the pathname to a file with entropy data,
see
.IR RAND_load_file (3).
If the file is a regular file writable by the invoking user,
new data is written to it after it has been loaded.
Only applicable if SSL/TLS support is built using OpenSSL.
.TP
.B ssl-verify
Sets the action to be performed if an error occurs
during SSL/TLS server certificate validation.
Valid values are
`strict' (fail and close connection immediately),
`ask' (ask whether to continue on standard input),
`warn' (print a warning and continue),
`ignore' (do not perform validation).
The default is `ask'.
.TP
\fBssl-verify-\fIuser\fB@\fIhost\fR
Overrides
.I ssl-verify
for a specific account.
.TP
.B toplines
If defined, gives the number of lines
of a message to be printed out
with the top command;
normally, the first five
lines are printed.
.TP
.B ttycharset
The character set of the terminal \fImailx\fR operates on.
There is normally no need to set this variable
since \fImailx\fR can determine this automatically
by looking at the LC_CTYPE locale setting;
if this succeeds, the value is assigned at startup
and will be displayed by the \fIset\fP command.
Note that this is not necessarily a character set name
that can be used in Internet messages.
.TP
.B VISUAL
Pathname of the text editor to use
in the visual command and ~v escape.
.SH ENVIRONMENT VARIABLES
Besides the variables described above, \fImailx\fR uses
the following environment strings:
.TP
.B HOME
The user's home directory.
.TP
\fBLANG\fR, \fBLC_ALL\fR, \fBLC_COLLATE\fR, \fBLC_CTYPE\fR, \fBLC_MESSAGES\fR
See
.IR locale (7).
.TP
.B MAILRC
Is used as startup file instead of ~/.mailrc if set.
When
.I mailx
scripts are invoked on behalf of other users,
this variable should be set to `/dev/null'
to avoid side-effects from reading their configuration files.
.TP
.B NAILRC
If this variable is set and
.I MAILRC
is not set,
it is read as startup file.
.TP
.B SYSV3
Changes the letters printed in the first column of a header summary.
.TP
.B TMPDIR
Used as directory for temporary files instead of /tmp, if set.
.SH FILES
.TP
~/.mailrc
File giving initial commands.
.TP
/etc/nail.rc
System wide initialization file.
.TP
~/.mime.types
Personal MIME types.
.TP
/etc/mime.types
System wide MIME types.
.SH EXAMPLES
.SS "Getting started"
The
.I mailx
command has two distinct usages, according to whether one
wants to send or receive mail.
Sending mail is simple: to send a
message to a user whose email address is, say,
<bill@host.example>,
use the shell
command:
.nf
.sp
    $ \fBmailx\fI bill@host.example\fR
.sp
.fi
then type your message.
.I Mailx
will prompt you for a message
.I subject 
first;
after that, lines typed by you form the body of the message.
When you reach the end of the message, type
an EOT (control\-d) at the beginning of a line, which will cause
.I mailx
to echo `EOT' and return you to the shell.
.PP
If, while you are composing the message
you decide that you do not wish to send it after all, you can
abort the letter with a \s-2RUBOUT\s0.  Typing a single \s-2RUBOUT\s0
causes
.I mailx
to print `(Interrupt -- one more to kill letter)'.
Typing a second
\s-2RUBOUT\s0 causes
.I mailx
to save your partial letter on the file `dead.letter'
in your home directory and abort the letter.
Once you have
sent mail to someone, there is no way to undo the act, so be
careful.
.PP
If you want to send the same message to several other people,
you can list their email addresses on the command line.
Thus,
.nf
.sp
    $ \fBmailx\fI sam@workstation.example bob@server.example\fR
    Subject: Fees
    Tuition fees are due next Friday.  Don't forget!
    <Control\-d>
    EOT
    $
.sp
.fi
will send the reminder to \fI<sam@workstation.example>\fR.
and
\fI<bob@server.example>\fR.
.PP
To read your mail, simply type
.nf
.sp
    $ \fBmailx\fR
.sp
.fi
.I Mailx
will respond by typing its version number and date and then listing
the messages you have waiting.
Then it will type a prompt and await your command.
The messages are assigned numbers starting with 1\(emyou
refer to the messages with these numbers.
.I Mailx
keeps track of which messages are
.I new
(have been sent since you last read your mail) and
.I read
(have been read by you).  New messages have an
.B N
next to them in the header listing and old, but unread messages have
a
.B U
next to them.
.I Mailx
keeps track of new/old and read/unread messages by putting a
header field called
.I Status
into your messages.
.PP
To look at a specific message, use the
.I type
command, which may be abbreviated to simply
.I t .
For example, if you had the following messages:
.nf
.sp
    O 1 drfoo@myhost.example Wed Sep  1 19:52  18/631 "Fees"
    O 2 sam@friends.example  Thu Sep  2 00:08  30/895
.sp
.fi
you could examine the first message by giving the command:
.nf
.sp
    \fBtype\fR 1
.sp
.fi
which might cause
.B mailx
to respond with, for example:
.nf
.sp
    Message  1:
    From drfoo@myhost.example Wed Sep  1 19:52:25 2004
    Subject: Fees
    Status: R

    Tuition fees are due next Wednesday.  Don't forget!
.sp
.fi
.PP
Many
.I mailx
commands that operate on messages take a message number as an
argument like the
.I type
command.
For these commands, there is a notion of a current message.
When you enter the
.I mailx
program, the current message is initially the first
(or the first recent) one.
Thus, you can often omit the message number and use, for example,
.nf
.sp
    \fBt\fR
.sp
.fi
to type the current message.
As a further shorthand, you can type a message
by simply giving its message number.
Hence,
.nf
.sp
    1
.sp
.fi
would type the first message.
.PP
Frequently, it is useful to read the messages in your mailbox in order,
one after another.
You can read the next message in
.I mailx
by simply typing a newline.
As a special case, you can type a newline as your first command to
.I mailx
to type the first message.
.PP
If, after typing a message, you wish to immediately send a reply,
you can do so with the
.I reply
command.
This command,
like
.IR type ,
takes a message number as an argument.
.I mailx
then begins a message addressed to the user who sent you the message.
You may then type in your letter in reply, followed by a <control-d>
at the beginning of a line, as before.
.PP
Note that
.I mailx
copies the subject header from the original message.
This is useful in that correspondence
about a particular matter will tend to retain the same subject heading,
making it easy to recognize.
If there are other header fields in the message,
like `Cc:',
the information found will also be used.
.PP
Sometimes you will receive a message that has been sent to
several people and wish to reply only
to the person who sent it.
.I Reply
with a capital
.I R
replies to a message, but sends a copy to the sender only.
.PP
If you wish, while reading your mail, to send a message to someone,
but not as a reply to one of your messages, you can send the message
directly with the
.I mail
command, which takes as arguments the names of the recipients you wish
to send to.
For example, to send a message to <frank@machine.example>,
you would do:
.nf
.sp
    \fBmail\fI frank@machine.example\fR
.fi
.PP
To delete a message from the mail folder,
you can use the
.I delete
command.
In addition to not saving deleted messages,
.I mailx
will not let you type them, either.
The effect is to make the message disappear
altogether, along with its number.
.PP
Many features of
.I mailx
can be tailored to your liking with the
.I set
command.
The
.I set
command has two forms, depending on whether you are setting a
.I binary
option or a
.I valued
option.
Binary options are either on or off.  For example, the
.I askcc
option informs
.I mailx
that each time you send a message, you want it to prompt you for
a `Cc:' header,
to be included in the message.
To set the
.I askcc
option, you would type
.nf
.sp
    \fBset\fR askcc
.fi
.PP
Valued options are values which
.I mailx
uses to adapt to your tastes.
For example, the
.I record
option tells
.I mailx
where to save messages sent by you,
and is specified by
.nf
.sp
    \fBset\fR record=Sent
.sp
.fi
for example.
Note that no spaces are allowed in
.I "set record=Sent".
.PP
.I Mailx
includes a simple facility for maintaining groups of messages together
in folders.
To use the folder facility, you must tell
.I mailx
where you wish to keep your folders.
Each folder of messages will be a single file.
For convenience, all of your folders are kept in
a single directory of your choosing.
To tell
.I mailx
where your folder directory is, put a line of the form
.nf
.sp
    \fBset folder=\fIletters\fR
.sp
.fi
in your
.I .mailrc
file.
If, as in the example above,
your folder directory does not begin with a `/',
.I mailx
will assume that your folder directory is to be found starting from
your home directory.
.PP
Anywhere a file name is expected, you can use a folder name, preceded
with `+'.
For example, to put a message into a folder with the
.I save
command, you can use:
.nf
.sp
    \fBsave +\fIclasswork\fR
.sp
.fi
to save the current message in the
.I classwork
folder.
If the
.I classwork
folder does not yet exist, it will be created.
Note that messages which are saved with the
.I save
command are automatically removed from your system mailbox.
.PP
In order to make a copy of a message in a folder without causing
that message to be removed from your system mailbox, use the
.I copy
command, which is identical in all other respects to the
.I save
command.
.PP
The
.I folder
command
can be used to direct
.I mailx
to the contents of a different folder.
For example,
.nf
.sp
    \fBfolder +\fIclasswork\fR
.sp
.fi
directs
.I mailx
to read the contents of the
.I classwork
folder.
All of the commands that you can use on your system
mailbox are also applicable to folders, including
.IR type ,
.IR delete ,
and
.IR reply .
To inquire which folder you are currently editing, use simply:
.nf
.sp
    \fBfolder\fR
.fi
.PP
To list your current set of folders, use the
.I folders
command.
.PP
Finally, the
.I help
command is available to print out a brief summary of the most important
.I mailx
commands.
.PP
While typing in a message to be sent to others, it is often
useful to be able to invoke the text editor on the partial message,
print the message, execute a shell command, or do some other
auxiliary function. 
.I Mailx
provides these capabilities through
.I "tilde escapes" ,
which consist of a tilde (~) at the beginning of a line, followed by
a single character which indicates the function to be performed.
For example, to print the text of the message so far, use:
.nf
.sp
    \fB~p\fR
.sp
.fi
which will print a line of dashes, the recipients of your message, and
the text of the message so far.
A list of the most important tilde escapes is available with `~?'.
.SS "IMAP or POP3 client setup"
First you need the following data from your ISP:
the host name of the IMAP or POP3 server,
user name and password for this server,
and a notice whether the server uses SSL/TLS encryption.
Assuming the host name is `server.myisp.example'
and your user name for that server is `mylogin',
you can refer to this account using the
.I folder
command or
.I \-f
command line option with
.nf

    \fBimaps://\fImylogin\fB@\fIserver.myisp.example\fR

.fi
(This string is not necessarily the same as your Internet mail address.)
You can replace `imaps://' with `imap://'
if the server does not support SSL/TLS.
(If SSL/TLS support is built using NSS, the
.I nss-config-dir
variable must be set before a connection can be initiated,
see above).
Use `pop3s://' or `pop3://' if the server does not offer IMAP.
You should use IMAP if you can, though;
first because it requires fewer network operations than POP3
to get the contents of the mailbox
and is thus faster;
and second because message attributes
are maintained by the IMAP server,
so you can easily distinguish new and old messages
each time you connect.
Even if the server does not accept IMAPS or POP3S connections,
it is possible that it supports the STARTTLS method
to make a session SSL/TLS encrypted
after the initial connection has been performed,
but before authentication begins.
The only reliable method to see if this works is to try it; enter one of
.nf

    \fBset imap-use-starttls\fR
    \fBset pop3-use-starttls\fR

.fi
before you initiate the connection.
.PP
As you probably want messages to be deleted from this account
after saving them,
prefix it with `\fI%:\fR'.
The
.I shortcut
command can be used to avoid typing that many characters
every time you want to connect:
.nf

    \fBshortcut \fImyisp\fB \fB%:imaps://\fImylogin\fB@\fIserver.myisp.example\fR

.fi
You might want to put this string into a startup file.
As the
.I shortcut
command is specific to this implementation of
.I mailx
and will confuse other implementations,
it should not be used in
.IR ~/.mailrc ,
instead, put
.nf

    \fBset NAIL_EXTRA_RC=\fI~/.nailrc\fR

.fi
in
.I ~/.mailrc
and create a file
.I ~/.nailrc
containing the
.I shortcut
command above.
You can then access your remote mailbox by invoking
`mailx \-f \fImyisp\fR' on the command line,
or by executing `fi \fImyisp\fR' within mailx.
.PP
If you want to use more than one IMAP mailbox on a server,
or if you want to use the IMAP server for mail storage too,
the
.I account
command
(which is also \fImailx-\fRspecific)
is more appropriate than the
.I shortcut
command.
You can put the following in
.IR ~/.nailrc :
.sp
.nf
    \fBaccount \fImyisp \fB{\fR
        \fBset folder=imaps://\fImylogin\fB@\fIserver.myisp.example\fR
        \fBset record=+\fISent \fBMBOX=+\fImbox \fBoutfolder\fR
    \fB}\fR
.fi
.sp
and can then access incoming mail for this account by invoking
`mailx \-A \fImyisp\fR' on the command line,
or by executing `ac \fImyisp\fR' within mailx.
After that,
a command like `copy \fI1\fR +\fIotherfolder\fR'
will refer to \fIotherfolder\fR on the IMAP server.
In particular,
`fi &' will change to the
.I mbox
folder,
and
`fi +Sent' will show your recorded sent mail,
with both folders located on the IMAP server.
.PP
.I Mailx
will ask you for a password string
each time you connect to a remote account.
If you can reasonably trust the security
of your workstation,
you can give this password in the startup file as
.nf

    \fBset password-\fImylogin\fB@\fIserver.myisp.example\fB="\fISECRET\fB"\fR

.fi
You should change the permissions of this file to 0600, see
.IR chmod (1).
.PP
.I Mailx
supports different authentication methods for both IMAP and POP3.
If Kerberos is used at your location,
you can try to activate GSSAPI-based authentication by
.nf

    \fBset imap-auth=gssapi\fR

.fi
The advantage of this method is that
.I mailx
does not need to know your password at all,
nor needs to send sensitive data over the network.
Otherwise, the options
.nf

    \fBset imap-auth=cram-md5\fR
    \fBset pop3-use-apop\fR

.fi
for IMAP and POP3, respectively,
offer authentication methods
that avoid to send the password in clear text over the network,
which is especially important if SSL/TLS cannot be used.
If the server does not offer any of these authentication methods,
conventional user/password based authentication must be used.
It is sometimes helpful to set the
.I verbose
option when authentication problems occur.
.I Mailx
will display all data sent to the server in clear text on the screen
with this option,
including passwords.
You should thus take care that no unauthorized person
can look at your terminal when this option is set.
.PP
If you regularly use the same workstation
to access IMAP accounts,
you can greatly enhance performance
by enabling local caching of IMAP messages.
For any message that has been fully or partially fetched from the server,
a local copy is made and is used when the message is accessed again,
so most data is transferred over the network once only.
To enable the IMAP cache,
select a local directory name and put
.nf

    \fBset imap-cache=\fI~/localdirectory\fR

.fi
in the startup file.
All files within that directory
can be overwritten or deleted by \fImailx\fR at any time,
so you should not use the directory to store other information.
.PP
Once the cache contains some messages,
it is not strictly necessary anymore
to open a connection to the IMAP server
to access them.
When \fImailx\fR is invoked with the \fI\-D\fR option,
or when the
.I disconnected
variable is set,
only cached data is used
for any folder you open.
Messages that have not yet been completely cached
are not available then,
but all other messages can be handled
as usual.
Changes made to IMAP mailboxes in
.I disconnected
mode are committed to the IMAP server
next time it is used in
.I online
mode.
Synchronizing the local status
with the status on the server
is thus partially within your responsibility;
if you forget to initiate a connection to the server again
before you leave your location,
changes made on one workstation
are not available on others.
Also if you alter IMAP mailboxes from a workstation
while uncommitted changes are still pending on another,
the latter data may become invalid.
The same might also happen because of internal server status changes.
You should thus carefully evaluate this feature in your environment
before you rely on it.
.PP
Many servers will close the connection
after a short period of inactivity. Use one of
.nf

    \fBset pop3-keepalive=\fI30\fR
    \fBset imap-keepalive=\fI240\fR

.fi
to send a keepalive message each 30 seconds for POP3,
or each 4 minutes for IMAP.
.PP
If you encounter problems connecting to a SSL/TLS server,
try the
.I ssl-rand-egd
and
.I ssl-rand-file
variables (see the OpenSSL FAQ for more information)
or specify the protocol version with
.IR ssl-method .
Contact your ISP
if you need a client certificate
or if verification of the server certificate fails.
If the failed certificate is indeed valid,
fetch its CA certificate by executing the shell command
.nf

    $ \fBopenssl s_client </dev/null \-showcerts \-connect \e
           \fIserver.myisp.example\fB:\fIimaps\fB 2>&1 | tee \fIlog\fR

.fi
(see
.IR s_client (1))
and put it into the file specified with
.IR ssl-ca-file .
The data you need is located at the end of the certificate chain
within (and including) the `BEGIN CERTIFICATE'
and `END CERTIFICATE' lines.
(Note that it is possible to fetch
a forged certificate by this method.
You can only completely rely
on the authenticity of the CA certificate
if you fetch it in a way that is trusted by other means,
such as by personally receiving the certificate on storage media.)
.SS "Creating a score file or message filter"
The scoring commands are best separated
from other configuration for clarity,
and are mostly
.I mailx
specific.
It is thus recommended to put them in a separate file
that is sourced from your NAIL_EXTRA_RC as follows:
.nf
.sp
    \fBsource\fI ~/.scores\fR
.sp
.fi
The \fI.scores\fR file could then look as follows:
.nf
.sp
    \fBdefine\fR \fIlist\fR {
        \fBscore\fR (subject "important discussion") +10
        \fBscore\fR (subject "annoying discussion") \-10
        \fBscore\fR (from "nicefellow@goodnet") +15
        \fBscore\fR (from "badguy@poornet") \-5
        \fBmove\fR (header x-spam-flag "+++++") \fI+junk\fR
    }
    \fBset folder-hook-\fRimap://user@host/public.list=\fIlist\fR
.sp
.fi
In this scheme,
you would see any mail from `nicefellow@goodnet',
even if the surrounding discussion is annoying;
but you normally would not see mail from `badguy@poornet',
unless he participates in the important discussion.
Messages that are marked with five or more plus characters
in their `X-Spam-Flag' field
(inserted by some server-side filtering software)
are moved to the folder `junk' in the
.I folder
directory.
.PP
Be aware that all criteria in (\|) lead to substring matches,
so you would also score messages
from e.\|g. `notsobadguy@poornetmakers' negative here.
It is possible to select addresses exactly using \fI"address"\fR
message specifications,
but these cannot be executed remotely 
and will thus cause all headers
to be downloaded from IMAP servers while looking for matches.
.PP
When searching messages on an IMAP server,
best performance is usually achieved
by sending as many criteria as possible
in one large (\|) specification,
because each single such specification
will result in a separate network operation.
.SS "Activating the Bayesian filter"
The Bayesian junk mail filter works
by examining the words contained in messages.
You decide yourself what a good and what a bad message is.
Thus the resulting filter is your very personal one;
once it is correctly set up,
it will filter only messages similar to those
previously specified by you.
.PP
To use the Bayesian filter,
a location for the junk mail database must be defined first:
.nf
.sp
    \fBset junkdb=\fI~/.junkdb\fR
.sp
.fi
The junk mail database does not contain
actual words extracted from messages,
but hashed representations of them.
A foreign person who can read the database
could only examine the frequency of previously known words
in your mail.
.PP
If you have sufficient disk space (several 10\ MB) available,
it is recommended that you set the
.I chained-junk-tokens
option.
The filter will then also consider two-word tokens,
improving its accuracy.
.PP
A set of good messages and junk messages must now be available;
it is also possible to use the incoming new messages for this purpose,
although it will of course take some time
until the filter becomes useful then.
Do not underestimate the amount of statistical data needed;
some hundred messages are typically necessary
to get satisfactory results,
and many thousand messages for best operation.
You have to pass the good messages to the
.I good
command,
and the junk messages to the
.I junk
command.
If you ever accidentally mark a good message as junk or vice-versa,
call the
.I ungood
or
.I unjunk
command to correct this.
.PP
Once a reasonable amount of statistics has been collected,
new messages can be classified automatically.
The
.I classify
command marks all messages that the filter considers to be junk,
but it does not perform any action on them by default.
It is recommended that you move these messages into a separate
folder just for the case that false positives occur,
or to pass them to the
.I junk
command later again to further improve the junk mail database.
To automatically move incoming junk messages
every time the inbox is opened,
put lines like the following into your
.I .scores
file (or whatever name you gave to the file in the last example):
.nf
.sp
    \fBdefine\fR \fIjunkfilter\fR {
        \fBclassify (smaller \fI20000\fB) :n\fR
        \fBmove :j\fR \fI+junk\fR
    }
    \fBset folder-hook-\fRimap://user@host/INBOX=\fIjunkfilter\fR
.sp
.fi
If you set the
.I verbose
option before running the
.I classify
command,
.I mailx
prints the words it uses for calculating the junk status
along with their statistical probabilities.
This can help you to find out
why some messages are not classified
as you would like them to be.
To see the statistical probability of a given word,
use the
.I probability
command.
.PP
If a junk message was not recognized as such,
use the
.I junk
command to correct this.
Also if you encounter a false positive
(a good message that was wrongly classified as junk),
pass it to the
.I good
command.
.PP
Since the
.I classify
command must examine the entire text
of all new messages in the respective folder,
this will also cause all of them to be downloaded from the IMAP server.
You should thus restrict the size of messages for automatic filtering.
If server-based filtering is also available,
you might try if that works for you first.
.SS "Reading HTML mail"
You need either the
.I w3m
or
.I lynx
utility
or another command-line web browser
that can write plain text to standard output.
.nf
.sp
    \fBset pipe-text/html=\fR"w3m -dump -T text/html"
.sp
.fi
or
.nf
.sp
    \fBset pipe-text/html=\fR"lynx -dump -force_html /dev/stdin"
.sp
.fi
will then cause HTML message parts to be converted into a more friendly form.
.SS "Viewing PDF attachments"
Most PDF viewers do not accept input directly from a pipe.
It is thus necessary to store the attachment in a temporary file, as with
.nf
.sp
    \fBset pipe-application/pdf=\fR"cat >/tmp/mailx$$.pdf; \e
           acroread /tmp/mailx$$.pdf; rm /tmp/mailx$$.pdf"
.sp
.fi
Note that security defects are discovered in PDF viewers
from time to time.
Automatical command execution like this
can compromise your system security,
in particular if you stay not always informed
about such issues.
.SS "Signed and encrypted messages with S/MIME"
S/MIME provides two central mechanisms:
message signing and message encryption.
A signed message contains some data in addition
to the regular text.
The data can be used to verify
that the message was sent using a valid certificate,
that the sender's address in the message header
matches that in the certificate,
and that the message text has not been altered.
Signing a message does not change its regular text;
it can be read regardless of whether the recipient's software
is able to handle S/MIME.
It is thus usually possible to sign all outgoing messages
if so desired.\(emEncryption, in contrast,
makes the message text invisible for all people
except those who have access to the secret decryption key.
To encrypt a message,
the specific recipient's public encryption key must be known.
It is thus not possible to send encrypted mail to people
unless their key has been retrieved
from either previous communication or public key directories.
A message should always be signed before it is encrypted.
Otherwise, it is still possible that the encrypted message text
is altered.
.PP
A central concept to S/MIME is that of the certification authority (CA).
A CA is a trusted institution that issues certificates.
For each of these certificates,
it can be verified that it really originates from the CA,
provided that the CA's own certificate is previously known.
A set of CA certificates is usually delivered with OpenSSL
and installed on your system.
If you trust the source of your OpenSSL software installation,
this offers reasonable security for S/MIME on the Internet.
In general, a certificate cannot be more secure
than the method its CA certificate has been retrieved with, though.
Thus if you download a CA certificate from the Internet,
you can only trust the messages you verify using that certificate
as much as you trust the download process.
.PP
The first thing you need for participating in S/MIME message exchange
is your personal certificate,
including a private key.
The certificate contains public information,
in particular your name and your email address,
and the public key that is used by others
to encrypt messages for you,
and to verify signed messages they supposedly received from you.
The certificate is included in each signed message you send.
The private key must be kept secret.
It is used to decrypt messages that were
previously encrypted with your public key,
and to sign messages.
.PP
For personal use,
it is recommended that you get a S/MIME certificate
from one of the major CAs on the Internet using your WWW browser.
(Many CAs offer such certificates for free.)
You will usually receive
a combined certificate and private key
in PKCS#12 format which
.I mailx
does not directly accept
if S/MIME support is built using OpenSSL.
To convert it to PEM format,
use the following shell command:
.nf
.sp
    $ \fBopenssl pkcs12 \-in \fIcert.p12\fB \-out \fIcert.pem\fB \-clcerts \e
        \-nodes\fR
.sp
.fi
If you omit the
.I \-nodes
parameter,
you can specifiy an additional
.I "PEM pass phrase"
for protecting the private key.
.I Mailx
will then ask you for that pass phrase
each time it signs or decrypts a message.
You can then use
.nf
.sp
    \fBset smime-sign-cert-\fImyname@myisp.example\fB=\fIcert.pem\fR
.sp
.fi
to make this private key and certificate known to
.IR mailx .
.PP
If S/MIME support is built using NSS,
the PKCS#12 file must be installed using Mozilla
(provided that
.I nss-config-dir
is set appropriately,
see above),
and no further action is necessary
unless multiple user certificates
for the same email address are installed.
In this case,
the
.I smime-sign-nickname
variable has to be set appropriately.
.PP
You can now sign outgoing messages.
Just use
.nf
.sp
    \fBset smime-sign\fR
.sp
.fi
to do so.
.PP
From each signed message you send,
the recipient can fetch your certificate
and use it to send encrypted mail back to you.
Accordingly if somebody sends you a signed message,
you can do the same.
First use the
.I verify
command to check the validity of the certificate.
After that,
retrieve the certificate and tell
.I mailx
that it should use it for encryption:
.nf
.sp
    \fBcertsave\fI filename\fR
    \fBset smime-encrypt-\fIuser@host\fB=\fIfilename\fR
.sp
.fi
If S/MIME support is built using NSS,
the saved certificate must be installed using Mozilla.
The value of the
.I smime-encrypt-user@host
is ignored then,
but if multiple certificates for the recipient are available,
the
.I smime-nickname-user@host
variable must be set.
.PP
You should carefully consider
if you prefer to store encrypted messages in decrypted form.
If you do, anybody who has access to your mail folders can read them,
but if you do not,
you might be unable to read them yourself later
if you happen to lose your private key.
The
.I decrypt
command saves messages in decrypted form,
while the
.IR save ,
.IR copy ,
and
.I move
commands leave them encrypted.
.PP
Note that neither S/MIME signing nor encryption
applies to message subjects or other header fields.
Thus they may not contain sensitive information
for encrypted messages,
and cannot be trusted even if the message content
has been verified.
When sending signed messages,
it is recommended to repeat any important header information
in the message text.
.SS "Using CRLs with S/MIME or SSL/TLS"
Certification authorities (CAs) issue
certificate revocation lists (CRLs) on a regular basis.
These lists contain the serial numbers of certificates
that have been declared invalid after they have been issued.
Such usually happens
because the private key for the certificate has been compromised,
because the owner of the certificate has left
the organization that is mentioned in the certificate,
etc.
To seriously use S/MIME or SSL/TLS verification,
an up-to-date CRL is required for each trusted CA.
There is otherwise no method
to distinguish between valid and invalidated certificates.
.I Mailx
currently offers no mechanism to fetch CRLs,
or to access them on the Internet,
so you have to retrieve them by some external mechanism.
.PP
If S/MIME and SSL/TLS support are built using OpenSSL,
.I mailx
accepts CRLs in PEM format only;
CRLs in DER format must be converted,
e.\|g. with the shell command
.nf
.sp
    $ \fBopenssl crl \-inform DER \-in \fIcrl.der\fB \-out \fIcrl.pem\fR
.sp
.fi
To tell
.I mailx
about the CRLs,
a directory
that contains all CRL files
(and no other files)
must be created.
The
.I smime-crl-dir
or
.I ssl-crl-dir
variables, respectively,
must then be set to point to that directory.
After that,
.I mailx
requires a CRL to be present
for each CA that is used
to verify a certificate.
.PP
If S/MIME and SSL/TLS support are built using NSS,
CRLs can be imported in Mozilla applications
(provided that
.I nss-config-dir
is set appropriately).
.SS "Sending mail from scripts"
If you want to send mail from scripts,
you must be aware that
.I mailx
reads the user's configuration files by default.
So unless your script is only intended for your own personal use
(as e.g. a cron job),
you need to circumvent this by invoking
.I mailx
like
.nf
.sp
    \fBMAILRC=/dev/null mailx \-n\fR
.sp
.fi
You then need to create a configuration for
.I mailx
for your script.
This can be done by either pointing the
.I MAILRC
variable to a custom configuration file,
or by passing the configuration in environment variables.
Since many of the configuration options are not valid shell variables, the
.I env
command is useful in this situation.
An invocation could thus look like
.nf
.sp
    \fBenv MAILRC=/dev/null\fR from=\fIscriptreply@domain\fR smtp=\fIhost\fR \e
          smtp-auth-user=\fIlogin\fR smtp-auth-password=\fIsecret\fR \e
          smtp-auth=\fIlogin\fR \fBmailx \-n\fR \-s "\fIsubject\fR" \e
          \-a \fIattachment_file\fR \fIrecipient@domain\fR <\fIcontent_file\fR
.SH "SEE ALSO"
fmt(1),
newaliases(1),
openssl(1),
pg(1),
more(1),
vacation(1),
ssl(3),
aliases(5),
locale(7),
mailaddr(7),
sendmail(8)
.SH NOTES
.PP
Variables in the environment passed to
.I mailx
cannot be unset.
.PP
The character set conversion relies
on the
.IR iconv (3)
function.
Its functionality differs widely
between the various system environments
\fImailx\fR runs on.
If the message `Cannot convert from \fIa\fR to \fIb\fR' appears,
either some characters within the message header or text
are not appropriate for the currently selected terminal character set,
or the needed conversion is not supported by the system.
In the first case,
it is necessary to set
an appropriate LC_CTYPE locale (e.\|g. \fIen_US\fR)
or the
.I ttycharset
variable.
In the second case, the
.I sendcharsets
and
.I ttycharset
variables must be set to the same value
to inhibit character set conversion.
If
.I iconv()
is not available at all,
the value assigned to
.I sendcharsets
must match the character set that is used on the terminal.
.PP
Mailx expects input text to be in Unix format,
with lines separated by 
.I newline
(^J, \en) characters only.
Non-Unix text files that use
.I carriage return
(^M, \er)
characters in addition will be treated as binary data;
to send such files as text, strip these characters e.\ g. by
.RS
.sp
tr \-d '\e015' <input | mailx .\ .\ .
.sp
.RE
or fix the tools that generate them.
.PP
Limitations with IMAP mailboxes are:
It is not possible to edit messages,
but it is possible to append them.
Thus to edit a message,
create a local copy of it,
edit it, append it,
and delete the original.
The line count for the header display
is only appropriate if the entire message has been downloaded
from the server.
The marking of messages as `new' is performed by the IMAP server;
use of the
.I exit
command instead of
.I quit
will not cause it to be reset,
and if the
.IR autoinc / newmail
variables are unset,
messages that arrived during a session
will not be in state `new' anymore
when the folder is opened again.
Also if commands queued in disconnected mode are committed,
the IMAP server will delete the `new' flag
for all messages in the changed folder,
and new messages will appear as unread
when it is selected for viewing later.
The `flagged', `answered', and `draft' attributes are usually permanent,
but some IMAP servers are known to drop them without notification.
.\" This is why mailx does not even check if storing them succeeds.
Message numbers may change with IMAP
every time before the prompt is printed
if \fImailx\fR is notified by the server
that messages have been deleted
by some other client or process.
In this case, `Expunged \fIn\fR messages' is printed,
and message numbers may have changed.
.PP
Limitations with POP3 mailboxes are:
It is not possible to edit messages,
they can only be copied and deleted.
The line count for the header display
is only appropriate if the entire message has been downloaded
from the server.
The status field of a message is maintained by the server
between connections;
some servers do not update it at all,
and with a server that does,
the `exit' command will not cause the message status to be reset.
The `newmail' command and the `newmail' variable
have no effect.
It is not possible to rename or to remove POP3 mailboxes.
.PP
If a
.SM RUBOUT
(interrupt) is typed while an IMAP or POP3 operation is in progress,
.I mailx
will wait until the operation can be safely aborted,
and will then return to the command loop
and print the prompt again.
When a second
.I RUBOUT
is typed while
.I mailx
is waiting for the operation to complete,
the operation itself will be canceled.
In this case,
data that has not been fetched yet
will have to be fetched
before the next command can be performed.
If the canceled operation
was using an SSL/TLS encrypted channel,
an error in the SSL transport will very likely result,
and the connection is no longer usable.
.PP
As \fImailx\fR is a mail user agent,
it provides only basic SMTP services.
If it fails to contact its upstream SMTP server,
it will not make further attempts to transfer the message
at a later time,
and it does not leave other information about this condition
than an error message on the terminal
and a `dead.letter' file.
This is usually not a problem if the SMTP server
is located in the same local network
as the computer on which \fImailx\fR is run.
However, care should be taken when using a remote server of an ISP;
it might be better to set up a local SMTP server then
which just acts as a proxy.
.PP
\fIMailx\fR immediately contacts the SMTP server (or
.IR \%/usr/lib/sendmail )
even when operating in
.I disconnected
mode.
It would not make much sense for \fImailx\fR to defer outgoing mail
since SMTP servers usually provide
much more elaborated delay handling
than \fImailx\fR could perform as a client.
Thus the recommended setup for sending mail in
.I disconnected
mode is to configure a local SMTP server
such that it sends outgoing mail
as soon as an external network connection is available again,
i.\|e. to advise it to do that from a network startup script.
.PP
The junk mail filter follows the concepts developed by
Paul Graham in his articles,
``A Plan for Spam'', August 2002,
\%<http://www.paulgraham.com/spam.html>,
and ``Better Bayesian Filtering'', January 2003,
\%<http://www.paulgraham.com/better.html>.
Chained tokens are due to a paper by
Jonathan A. Zdziarski,
``Advanced Language Classification using Chained Tokens'',
February 2004,
\%<http://www.nuclearelephant.com/papers/chained.html>.
.PP
A \fImail\fR command appeared in Version 1 AT&T Unix.
Berkeley Mail was written in 1978 by Kurt Shoens.
This man page is derived from
from The Mail Reference Manual
originally written by Kurt Shoens.
\fIHeirloom Mailx\fR enhancements are maintained and documented
by Gunnar Ritter.
.PP
Portions of this text are reprinted and reproduced in electronic form
from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
\(em Operating System Interface (POSIX), The Open Group Base
Specifications Issue 6, Copyright \(co 2001-2003 by the Institute of
Electrical and Electronics Engineers, Inc and The Open Group. In the
event of any discrepancy between this version and the original IEEE and
The Open Group Standard, the original IEEE and The Open Group Standard
is the referee document. The original Standard can be obtained online at
\%http://www.opengroup.org/unix/online.html\ .
Redistribution of this material is permitted so long as this notice remains
intact.