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
|
#
# System configuration file for Mutt
#
#################################################
## Configs added by Nathan ##
#################################################
# | | | | | #
# V V V V V #
set sendmail="/usr/sbin/sendmail"
set sendmail_wait=30
set folder="~/Maildir"
set spoolfile="+INBOX"
set mbox_type="Maildir"
set confirmappend=no
set mark_old=no
set move=no
set realname="Nathan Kinkade"
set record="+Sent"
set edit_headers=yes
set index_format="%4C %Z %{%b %d} %-20.20F (%4l) %s"
set editor="vim '+set textwidth=72'"
set from="nath@nkinka.de"
set envelope_from=yes
set tmpdir="/tmp"
#set signature="~/muttmail/signature"
my_hdr Reply-To: nath@nkinka.de
#set pgp_autosign=yes
#source "~/muttmail/gpg.rc"
set trash="+Trash"
set postponed="+Drafts"
set send_charset="utf-8:us-ascii"
set header_cache=~/.mutthc
set maildir_header_cache_verify = no
lists announce@lists.roundcube.net
lists dev@lists.roundcube.net
lists users@lists.roundcube.net
subscribe announce@lists.roundcube.net
subscribe dev@lists.roundcube.net
subscribe users@lists.roundcube.net
mailboxes !
mailboxes +Drafts
mailboxes +Sent
mailboxes +archives
mailboxes +mairix
mailboxes /var/mail/nkinkade
mailboxes +rcube-announce
mailboxes +rcube-dev
mailboxes +rcube-users
mailboxes +seabean-l
mailboxes +Trash
mailboxes +Spam
mailboxes +HamNotSpam
mailboxes +SpamNotHam
alias me nath@nkinka.de
alias dad jkinkad@emory.edu
alias mom tkinkade@mindspring.com
alias cabe cmvinson@gmail.com
alias jane jbkinkade@comcast.net
alias jay info@tictoctunes.com
alias ulrich uhgall@ml1.net
alias scott scottk@511tactical.com
alias mindy mkinkade@dmc-logistics.com
alias adri acontrea@gmail.com
color normal default default
color hdrdefault brightcyan default
color signature green default
color attachment brightyellow default
color indicator brightblack brightcyan
color quoted green default
color quoted1 white default
color tilde blue default
color body brightcyan default "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+"
color body brightwhite default "(http|ftp|news|telnet|finger)://[^ \">\t\r\n]*"
color body brightwhite default "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
color header brightmagenta default ^(Date):
color header brightyellow default ^Subject:
color body brightred default " [;:]-*[)>(<|]"
folder-hook . set sort=threads
folder-hook . set pager_index_lines=15
folder-hook +INBOX set sort=date-received
folder-hook +Sent set sort=date-sent
hdr_order Date From To Cc User-Agent X-Mailer Subject
ignore *
unignore Date From To Cc User-Agent X-Mailer Subject
macro generic \Ca ';s+archives' 'archive messages'
macro index S "<shell-escape>mairix" "Run a Mairix search"
# mutt sidebar settings
bind index,pager \CP sidebar-prev
bind index,pager \CN sidebar-next
bind index,pager \CO sidebar-open
macro index,pager B '<enter-command>toggle sidebar_visible<enter>'
color sidebar_new yellow default
#auto_view text/html
# ^ ^ ^ ^ ^ #
# | | | | | #
#################################################
## End Configs added by Nathan ##
#################################################
# default list of header fields to weed when displaying
#
# ignore "from " received content- mime-version status x-status message-id
# ignore sender references return-path lines
# imitate the old search-body function
macro index \eb '/~b ' 'search in message bodies'
# simulate the old url menu
macro index \cb |urlview\n 'call urlview to extract URLs out of a message'
macro pager \cb |urlview\n 'call urlview to extract URLs out of a message'
# Show documentation when pressing F1
macro generic <f1> "!less /usr/local/share/doc/mutt/manual.txt\n" "Show Mutt documentation"
macro index <f1> "!less /usr/local/share/doc/mutt/manual.txt\n" "Show Mutt documentation"
macro pager <f1> "!less /usr/local/share/doc/mutt/manual.txt\n" "Show Mutt documentation"
# Use folders which match on \\.gz$ as gzipped folders:
# open-hook \\.gz$ "gzip -cd %f > %t"
# close-hook \\.gz$ "gzip -c %t > %f"
# append-hook \\.gz$ "gzip -c %t >> %f"
# If Mutt is unable to determine your site's domain name correctly, you can
# set the default here.
#
# set hostname=cs.hmc.edu
# If your sendmail supports the -B8BITMIME flag, enable the following
#
# set use_8bitmime
##
## More settings
##
# set abort_nosubject=ask-yes
#
# Name: abort_nosubject
# Type: quadoption
# Default: ask-yes
#
#
# If set to yes, when composing messages and no subject is given
# at the subject prompt, composition will be aborted. If set to
# no, composing messages with no subject given at the subject
# prompt will never be aborted.
#
#
# set abort_unmodified=yes
#
# Name: abort_unmodified
# Type: quadoption
# Default: yes
#
#
# If set to yes, composition will automatically abort after
# editing the message body if no changes are made to the file (this
# check only happens after the first edit of the file). When set
# to no, composition will never be aborted.
#
#
# set alias_file="~/.muttrc"
#
# Name: alias_file
# Type: path
# Default: "~/.muttrc"
#
#
# The default file in which to save aliases created by the
# ``create-alias'' function.
#
# Note: Mutt will not automatically source this file; you must
# explicitly use the ``source'' command for it to be executed.
#
#
# set alias_format="%4n %2f %t %-10a %r"
#
# Name: alias_format
# Type: string
# Default: "%4n %2f %t %-10a %r"
#
#
# Specifies the format of the data displayed for the `alias' menu. The
# following printf(3)-style sequences are available:
#
# %a alias name
# %f flags - currently, a "d" for an alias marked for deletion
# %n index number
# %r address which alias expands to
# %t character which indicates if the alias is tagged for inclusion
#
#
# set allow_8bit=yes
#
# Name: allow_8bit
# Type: boolean
# Default: yes
#
#
# Controls whether 8-bit data is converted to 7-bit using either Quoted-
# Printable or Base64 encoding when sending mail.
#
#
# set allow_ansi=no
#
# Name: allow_ansi
# Type: boolean
# Default: no
#
#
# Controls whether ANSI color codes in messages (and color tags in
# rich text messages) are to be interpreted.
# Messages containing these codes are rare, but if this option is set,
# their text will be colored accordingly. Note that this may override
# your color choices, and even present a security problem, since a
# message could include a line like "[-- PGP output follows ..." and
# give it the same color as your attachment color.
#
#
# set alternates=""
#
# Name: alternates
# Type: regular expression
# Default: ""
#
#
# A regexp that allows you to specify alternate addresses where
# you receive mail. This affects Mutt's idea about messages from you
# and addressed to you.
#
#
# set arrow_cursor=no
#
# Name: arrow_cursor
# Type: boolean
# Default: no
#
#
# When set, an arrow (``->'') will be used to indicate the current entry
# in menus instead of hiliting the whole line. On slow network or modem
# links this will make response faster because there is less that has to
# be redrawn on the screen when moving to the next or previous entries
# in the menu.
#
#
# set ascii_chars=no
#
# Name: ascii_chars
# Type: boolean
# Default: no
#
#
# If set, Mutt will use plain ASCII characters when displaying thread
# and attachment trees, instead of the default ACS characters.
#
#
# set askbcc=no
#
# Name: askbcc
# Type: boolean
# Default: no
#
#
# If set, Mutt will prompt you for blind-carbon-copy (Bcc) recipients
# before editing an outgoing message.
#
#
# set askcc=no
#
# Name: askcc
# Type: boolean
# Default: no
#
#
# If set, Mutt will prompt you for carbon-copy (Cc) recipients before
# editing the body of an outgoing message.
#
#
# set attach_format="%u%D%I %t%4n %T%.40d%> [%.7m/%.10M, %.6e%?C?, %C?, %s] "
#
# Name: attach_format
# Type: string
# Default: "%u%D%I %t%4n %T%.40d%> [%.7m/%.10M, %.6e%?C?, %C?, %s] "
#
#
# This variable describes the format of the `attachment' menu. The
# following printf-style sequences are understood:
#
# %D deleted flag
# %d description
# %e MIME content-transfer-encoding
# %f filename
# %I disposition (I=inline, A=attachment)
# %m major MIME type
# %M MIME subtype
# %n attachment number
# %s size
# %t tagged flag
# %u unlink (=to delete) flag
# %>X right justify the rest of the string and pad with character "X"
# %|X pad to the end of the line with character "X"
#
#
# set attach_sep="\n"
#
# Name: attach_sep
# Type: string
# Default: "\n"
#
#
# The separator to add between attachments when operating (saving,
# printing, piping, etc) on a list of tagged attachments.
#
#
# set attach_split=yes
#
# Name: attach_split
# Type: boolean
# Default: yes
#
#
# If this variable is unset, when operating (saving, printing, piping,
# etc) on a list of tagged attachments, Mutt will concatenate the
# attachments and will operate on them as a single attachment. The
# ``$attach_sep'' separator is added after each attachment. When set,
# Mutt will operate on the attachments one by one.
#
#
# set attribution="On %d, %n wrote:"
#
# Name: attribution
# Type: string
# Default: "On %d, %n wrote:"
#
#
# This is the string that will precede a message which has been included
# in a reply. For a full listing of defined printf()-like sequences see
# the section on ``$index_format''.
#
#
# set autoedit=no
#
# Name: autoedit
# Type: boolean
# Default: no
#
#
# When set along with ``$edit_headers'', Mutt will skip the initial
# send-menu and allow you to immediately begin editing the body of your
# message. The send-menu may still be accessed once you have finished
# editing the body of your message.
#
# Also see ``$fast_reply''.
#
#
# set auto_tag=no
#
# Name: auto_tag
# Type: boolean
# Default: no
#
#
# When set, functions in the index menu which affect a message
# will be applied to all tagged messages (if there are any). When
# unset, you must first use the tag-prefix function (default: ";") to
# make the next function apply to all tagged messages.
#
#
# set beep=yes
#
# Name: beep
# Type: boolean
# Default: yes
#
#
# When this variable is set, mutt will beep when an error occurs.
#
#
# set beep_new=no
#
# Name: beep_new
# Type: boolean
# Default: no
#
#
# When this variable is set, mutt will beep whenever it prints a message
# notifying you of new mail. This is independent of the setting of the
# ``$beep'' variable.
#
#
# set bounce_delivered=yes
#
# Name: bounce_delivered
# Type: boolean
# Default: yes
#
#
# When this variable is set, mutt will include Delivered-To headers when
# bouncing messages. Postfix users may wish to unset this variable.
#
#
# set charset=""
#
# Name: charset
# Type: string
# Default: ""
#
#
# Character set your terminal uses to display and enter textual data.
#
#
# set check_new=yes
#
# Name: check_new
# Type: boolean
# Default: yes
#
#
# Note: this option only affects maildir and MH style
# mailboxes.
#
# When set, Mutt will check for new mail delivered while the
# mailbox is open. Especially with MH mailboxes, this operation can
# take quite some time since it involves scanning the directory and
# checking each file to see if it has already been looked at. If
# check_new is unset, no check for new mail is performed
# while the mailbox is open.
#
#
# set collapse_unread=yes
#
# Name: collapse_unread
# Type: boolean
# Default: yes
#
#
# When unset, Mutt will not collapse a thread if it contains any
# unread messages.
#
#
# set uncollapse_jump=no
#
# Name: uncollapse_jump
# Type: boolean
# Default: no
#
#
# When set, Mutt will jump to the next unread message, if any,
# when the current thread is uncollapsed.
#
#
# set compose_format="-- Mutt: Compose [Approx. msg size: %l Atts: %a]%>-"
#
# Name: compose_format
# Type: string
# Default: "-- Mutt: Compose [Approx. msg size: %l Atts: %a]%>-"
#
#
# Controls the format of the status line displayed in the \fCompose
# menu. This string is similar to ``$status_format'', but has its own
# set of printf()-like sequences:
#
# %a total number of attachments
# %h local hostname
# %l approximate size (in bytes) of the current message
# %v Mutt version string
#
#
# See the text describing the ``$status_format'' option for more
# information on how to set ``$compose_format''.
#
#
# set confirmappend=yes
#
# Name: confirmappend
# Type: boolean
# Default: yes
#
#
# When set, Mutt will prompt for confirmation when appending messages to
# an existing mailbox.
#
#
# set confirmcreate=yes
#
# Name: confirmcreate
# Type: boolean
# Default: yes
#
#
# When set, Mutt will prompt for confirmation when saving messages to a
# mailbox which does not yet exist before creating it.
#
#
# set connect_timeout=30
#
# Name: connect_timeout
# Type: number
# Default: 30
#
#
# Causes Mutt to timeout a network connection (for IMAP or POP) after this
# many seconds if the connection is not able to be established. A negative
# value causes Mutt to wait indefinitely for the connection to succeed.
#
#
# set copy=yes
#
# Name: copy
# Type: quadoption
# Default: yes
#
#
# This variable controls whether or not copies of your outgoing messages
# will be saved for later references. Also see ``$record'',
# ``$save_name'', ``$force_name'' and ``fcc-hook''.
#
#
# set date_format="!%a, %b %d, %Y at %I:%M:%S%p %Z"
#
# Name: date_format
# Type: string
# Default: "!%a, %b %d, %Y at %I:%M:%S%p %Z"
#
#
# This variable controls the format of the date printed by the ``%d''
# sequence in ``$index_format''. This is passed to the strftime
# call to process the date. See the man page for strftime(3) for
# the proper syntax.
#
# Unless the first character in the string is a bang (``!''), the month
# and week day names are expanded according to the locale specified in
# the variable ``$locale''. If the first character in the string is a
# bang, the bang is discarded, and the month and week day names in the
# rest of the string are expanded in the C locale (that is in US
# English).
#
#
# set default_hook="~f %s !~P | (~P ~C %s)"
#
# Name: default_hook
# Type: string
# Default: "~f %s !~P | (~P ~C %s)"
#
#
# This variable controls how send-hooks, message-hooks, save-hooks,
# and fcc-hooks will
# be interpreted if they are specified with only a simple regexp,
# instead of a matching pattern. The hooks are expanded when they are
# declared, so a hook will be interpreted according to the value of this
# variable at the time the hook is declared. The default value matches
# if the message is either from a user matching the regular expression
# given, or if it is from you (if the from address matches
# ``$alternates'') and is to or cc'ed to a user matching the given
# regular expression.
#
#
# set delete=ask-yes
#
# Name: delete
# Type: quadoption
# Default: ask-yes
#
#
# Controls whether or not messages are really deleted when closing or
# synchronizing a mailbox. If set to yes, messages marked for
# deleting will automatically be purged without prompting. If set to
# no, messages marked for deletion will be kept in the mailbox.
#
#
# set delete_untag=yes
#
# Name: delete_untag
# Type: boolean
# Default: yes
#
#
# If this option is set, mutt will untag messages when marking them
# for deletion. This applies when you either explicitly delete a message,
# or when you save it to another folder.
#
#
# set digest_collapse=yes
#
# Name: digest_collapse
# Type: boolean
# Default: yes
#
#
# If this option is set, mutt's revattach menu will not show the subparts of
# individual messages in a digest. To see these subparts, press 'v' on that menu.
#
#
# set display_filter=""
#
# Name: display_filter
# Type: path
# Default: ""
#
#
# When set, specifies a command used to filter messages. When a message
# is viewed it is passed as standard input to $display_filter, and the
# filtered message is read from the standard output.
#
#
# set dotlock_program="/usr/local/bin/mutt_dotlock"
#
# Name: dotlock_program
# Type: path
# Default: "/usr/local/bin/mutt_dotlock"
#
#
# Contains the path of the mutt_dotlock (8) binary to be used by
# mutt.
#
#
# set dsn_notify=""
#
# Name: dsn_notify
# Type: string
# Default: ""
#
#
# Note: you should not enable this unless you are using Sendmail
# 8.8.x or greater.
#
# This variable sets the request for when notification is returned. The
# string consists of a comma separated list (no spaces!) of one or more
# of the following: never, to never request notification,
# failure, to request notification on transmission failure,
# delay, to be notified of message delays, success, to be
# notified of successful transmission.
#
# Example: set dsn_notify="failure,delay"
#
#
# set dsn_return=""
#
# Name: dsn_return
# Type: string
# Default: ""
#
#
# Note: you should not enable this unless you are using Sendmail
# 8.8.x or greater.
#
# This variable controls how much of your message is returned in DSN
# messages. It may be set to either hdrs to return just the
# message header, or full to return the full message.
#
# Example: set dsn_return=hdrs
#
#
# set duplicate_threads=yes
#
# Name: duplicate_threads
# Type: boolean
# Default: yes
#
#
# This variable controls whether mutt, when sorting by threads, threads
# messages with the same message-id together. If it is set, it will indicate
# that it thinks they are duplicates of each other with an equals sign
# in the thread diagram.
#
#
# set edit_headers=no
#
# Name: edit_headers
# Type: boolean
# Default: no
#
#
# This option allows you to edit the header of your outgoing messages
# along with the body of your message.
#
#
# set editor=""
#
# Name: editor
# Type: path
# Default: ""
#
#
# This variable specifies which editor is used by mutt.
# It defaults to the value of the EDITOR or VISUAL environment
# variable, or to the string "vi".
#
#
# set encode_from=no
#
# Name: encode_from
# Type: boolean
# Default: no
#
#
# When set, mutt will quoted-printable encode messages when
# they contain the string "From " in the beginning of a line.
# Useful to avoid the tampering certain mail delivery and transport
# agents tend to do with messages.
#
#
# set envelope_from=no
#
# Name: envelope_from
# Type: boolean
# Default: no
#
#
# When set, mutt will try to derive the message's envelope
# sender from the "From:" header. Note that this information is passed
# to sendmail command using the "-f" command line switch, so don't set this
# option if you are using that switch in $sendmail yourself,
# or if the sendmail on your machine doesn't support that command
# line switch.
#
#
# set escape="~"
#
# Name: escape
# Type: string
# Default: "~"
#
#
# Escape character to use for functions in the builtin editor.
#
#
# set fast_reply=no
#
# Name: fast_reply
# Type: boolean
# Default: no
#
#
# When set, the initial prompt for recipients and subject are skipped
# when replying to messages, and the initial prompt for subject is
# skipped when forwarding messages.
#
# Note: this variable has no effect when the ``$autoedit''
# variable is set.
#
#
# set fcc_attach=yes
#
# Name: fcc_attach
# Type: boolean
# Default: yes
#
#
# This variable controls whether or not attachments on outgoing messages
# are saved along with the main body of your message.
#
#
# set fcc_clear=no
#
# Name: fcc_clear
# Type: boolean
# Default: no
#
#
# When this variable is set, FCCs will be stored unencrypted and
# unsigned, even when the actual message is encrypted and/or signed.
#
#
# set folder="~/Mail"
#
# Name: folder
# Type: path
# Default: "~/Mail"
#
#
# Specifies the default location of your mailboxes. A `+' or `=' at the
# beginning of a pathname will be expanded to the value of this
# variable. Note that if you change this variable from the default
# value you need to make sure that the assignment occurs before
# you use `+' or `=' for any other variables since expansion takes place
# during the `set' command.
#
#
# set folder_format="%2C %t %N %F %2l %-8.8u %-8.8g %8s %d %f"
#
# Name: folder_format
# Type: string
# Default: "%2C %t %N %F %2l %-8.8u %-8.8g %8s %d %f"
#
#
# This variable allows you to customize the file browser display to your
# personal taste. This string is similar to ``$index_format'', but has
# its own set of printf()-like sequences:
#
# %C current file number
# %d date/time folder was last modified
# %f filename
# %F file permissions
# %g group name (or numeric gid, if missing)
# %l number of hard links
# %N N if folder has new mail, blank otherwise
# %s size in bytes
# %t * if the file is tagged, blank otherwise
# %u owner name (or numeric uid, if missing)
# %>X right justify the rest of the string and pad with character "X"
# %|X pad to the end of the line with character "X"
#
#
# set followup_to=yes
#
# Name: followup_to
# Type: boolean
# Default: yes
#
#
# Controls whether or not the Mail-Followup-To header field is
# generated when sending mail. When set, Mutt will generate this
# field when you are replying to a known mailing list, specified with
# the ``subscribe'' or ``lists'' commands.
#
# This field has two purposes. First, preventing you from receiving
# duplicate copies of replies to messages which you send to mailing
# lists. Second, ensuring that you do get a reply separately for any
# messages sent to known lists to which you are not subscribed. The
# header will contain only the list's address for subscribed lists,
# and both the list address and your own email address for unsubscribed
# lists. Without this header, a group reply to your message sent to a
# subscribed list will be sent to both the list and your address,
# resulting in two copies of the same email for you.
#
#
# set force_name=no
#
# Name: force_name
# Type: boolean
# Default: no
#
#
# This variable is similar to ``$save_name'', except that Mutt will
# store a copy of your outgoing message by the username of the address
# you are sending to even if that mailbox does not exist.
#
# Also see the ``$record'' variable.
#
#
# set forward_decode=yes
#
# Name: forward_decode
# Type: boolean
# Default: yes
#
#
# Controls the decoding of complex MIME messages into text/plain when
# forwarding a message. The message header is also RFC2047 decoded.
# This variable is only used, if ``$mime_forward'' is unset,
# otherwise ``$mime_forward_decode'' is used instead.
#
#
# set forward_format="[%a: %s]"
#
# Name: forward_format
# Type: string
# Default: "[%a: %s]"
#
#
# This variable controls the default subject when forwarding a message.
# It uses the same format sequences as the ``$index_format'' variable.
#
#
# set forward_quote=no
#
# Name: forward_quote
# Type: boolean
# Default: no
#
#
# When set forwarded messages included in the main body of the
# message (when ``$mime_forward'' is unset) will be quoted using
# ``$indent_string''.
#
#
# set from=""
#
# Name: from
# Type: e-mail address
# Default: ""
#
#
# When set, this variable contains a default from address. It
# can be overridden using my_hdr (including from send-hooks) and
# ``$reverse_name''.
#
# Defaults to the EMAIL environment variable's content.
#
#
# set gecos_mask="^[^,]*"
#
# Name: gecos_mask
# Type: regular expression
# Default: "^[^,]*"
#
#
# A regular expression used by mutt to parse the GECOS field of a password
# entry when expanding the alias. By default the regular expression is set
# to "^[^,]*" which will return the string up to the first "," encountered.
# If the GECOS field contains a string like "lastname, firstname" then you
# should set the gecos_mask=".*".
#
# This can be useful if you see the following behavior: you address a e-mail
# to user ID stevef whose full name is Steve Franklin. If mutt expands
# stevef to "Franklin" stevef@foo.bar then you should set the gecos_mask to
# a regular expression that will match the whole name so mutt will expand
# "Franklin" to "Franklin, Steve".
#
#
# set hdrs=yes
#
# Name: hdrs
# Type: boolean
# Default: yes
#
#
# When unset, the header fields normally added by the ``my_hdr''
# command are not created. This variable must be unset before
# composing a new message or replying in order to take effect. If set,
# the user defined header fields are added to every new message.
#
#
# set header=no
#
# Name: header
# Type: boolean
# Default: no
#
#
# When set, this variable causes Mutt to include the header
# of the message you are replying to into the edit buffer.
# The ``$weed'' setting applies.
#
#
# set help=yes
#
# Name: help
# Type: boolean
# Default: yes
#
#
# When set, help lines describing the bindings for the major functions
# provided by each menu are displayed on the first line of the screen.
#
# Note: The binding will not be displayed correctly if the
# function is bound to a sequence rather than a single keystroke. Also,
# the help line may not be updated if a binding is changed while Mutt is
# running. Since this variable is primarily aimed at new users, neither
# of these should present a major problem.
#
#
# set hidden_host=no
#
# Name: hidden_host
# Type: boolean
# Default: no
#
#
# When set, mutt will skip the host name part of ``$hostname'' variable
# when adding the domain part to addresses. This variable does not
# affect the generation of Message-IDs, and it will not lead to the
# cut-off of first-level domains.
#
#
# set hide_limited=no
#
# Name: hide_limited
# Type: boolean
# Default: no
#
#
# When set, mutt will not show the presence of missing messages in the
# thread tree.
#
#
# set hide_missing=yes
#
# Name: hide_missing
# Type: boolean
# Default: yes
#
#
# When set, mutt will not show the presence of messages that are hidden
# by limiting, in the thread tree.
#
#
# set hide_top_limited=no
#
# Name: hide_top_limited
# Type: boolean
# Default: no
#
#
# When set, mutt will not show the presence of missing messages at the
# top of threads in the thread tree. Note that when $hide_limited is
# set, this option will have no effect.
#
#
# set hide_top_missing=yes
#
# Name: hide_top_missing
# Type: boolean
# Default: yes
#
#
# When set, mutt will not show the presence of messages that are hidden
# by limiting, at the top of threads in the thread tree.Note that when
# $hide_missing is set, this option will have no effect.
#
#
# set history=10
#
# Name: history
# Type: number
# Default: 10
#
#
# This variable controls the size (in number of strings remembered) of
# the string history buffer. The buffer is cleared each time the
# variable is set.
#
#
# set honor_followup_to=yes
#
# Name: honor_followup_to
# Type: quadoption
# Default: yes
#
#
# This variable controls whether or not a Mail-Followup-To header is
# honored when group-replying to a message.
#
#
# set hostname=""
#
# Name: hostname
# Type: string
# Default: ""
#
#
# Specifies the hostname to use after the ``@'' in local e-mail
# addresses. This overrides the compile time definition obtained from
# /etc/resolv.conf.
#
#
# set ignore_list_reply_to=no
#
# Name: ignore_list_reply_to
# Type: boolean
# Default: no
#
#
# Affects the behaviour of the reply function when replying to
# messages from mailing lists. When set, if the ``Reply-To:'' field is
# set to the same value as the ``To:'' field, Mutt assumes that the
# ``Reply-To:'' field was set by the mailing list to automate responses
# to the list, and will ignore this field. To direct a response to the
# mailing list when this option is set, use the list-reply
# function; group-reply will reply to both the sender and the
# list.
#
#
# set imap_authenticators=""
#
# Name: imap_authenticators
# Type: string
# Default: ""
#
#
# This is a colon-delimited list of authentication methods mutt may
# attempt to use to log in to an IMAP server, in the order mutt should
# try them. Authentication methods are either 'login' or the right
# side of an IMAP 'AUTH=xxx' capability string, eg 'digest-md5',
# 'gssapi' or 'cram-md5'. This parameter is case-insensitive. If this
# parameter is unset (the default) mutt will try all available methods,
# in order from most-secure to least-secure.
#
# Example: set imap_authenticators="gssapi:cram-md5:login"
#
# Note: Mutt will only fall back to other authentication methods if
# the previous methods are unavailable. If a method is available but
# authentication fails, mutt will not connect to the IMAP server.
#
#
# set imap_delim_chars="/."
#
# Name: imap_delim_chars
# Type: string
# Default: "/."
#
#
# This contains the list of characters which you would like to treat
# as folder separators for displaying IMAP paths. In particular it
# helps in using the '=' shortcut for your folder variable.
#
#
# set imap_force_ssl=no
#
# Name: imap_force_ssl
# Type: boolean
# Default: no
#
#
# If this variable is set, Mutt will always use SSL when
# connecting to IMAP servers.
#
#
# set imap_home_namespace=""
#
# Name: imap_home_namespace
# Type: string
# Default: ""
#
#
# You normally want to see your personal folders alongside
# your INBOX in the IMAP browser. If you see something else, you may set
# this variable to the IMAP path to your folders.
#
#
# set imap_keepalive=900
#
# Name: imap_keepalive
# Type: number
# Default: 900
#
#
# This variable specifies the maximum amount of time in seconds that mutt
# will wait before polling open IMAP connections, to prevent the server
# from closing them before mutt has finished with them. The default is
# well within the RFC-specified minimum amount of time (30 minutes) before
# a server is allowed to do this, but in practice the RFC does get
# violated every now and then. Reduce this number if you find yourself
# getting disconnected from your IMAP server due to inactivity.
#
#
# set imap_list_subscribed=no
#
# Name: imap_list_subscribed
# Type: boolean
# Default: no
#
#
# This variable configures whether IMAP folder browsing will look for
# only subscribed folders or all folders. This can be toggled in the
# IMAP browser with the toggle-subscribed command.
#
#
# set imap_pass=""
#
# Name: imap_pass
# Type: string
# Default: ""
#
#
# Specifies the password for your IMAP account. If unset, Mutt will
# prompt you for your password when you invoke the fetch-mail function.
# Warning: you should only use this option when you are on a
# fairly secure machine, because the superuser can read your muttrc even
# if you are the only one who can read the file.
#
#
# set imap_passive=yes
#
# Name: imap_passive
# Type: boolean
# Default: yes
#
#
# When set, mutt will not open new IMAP connections to check for new
# mail. Mutt will only check for new mail over existing IMAP
# connections. This is useful if you don't want to be prompted to
# user/password pairs on mutt invocation, or if opening the connection
# is slow.
#
#
# set imap_peek=yes
#
# Name: imap_peek
# Type: boolean
# Default: yes
#
#
# If set, mutt will avoid implicitly marking your mail as read whenever
# you fetch a message from the server. This is generally a good thing,
# but can make closing an IMAP folder somewhat slower. This option
# exists to appease spead freaks.
#
#
# set imap_servernoise=yes
#
# Name: imap_servernoise
# Type: boolean
# Default: yes
#
#
# When set, mutt will display warning messages from the IMAP
# server as error messages. Since these messages are often
# harmless, or generated due to configuration problems on the
# server which are out of the users' hands, you may wish to suppress
# them at some point.
#
#
# set imap_user=""
#
# Name: imap_user
# Type: string
# Default: ""
#
#
# Your login name on the IMAP server.
#
# This variable defaults to your user name on the local machine.
#
#
# set implicit_autoview=no
#
# Name: implicit_autoview
# Type: boolean
# Default: no
#
#
# If set to ``yes'', mutt will look for a mailcap entry with the
# copiousoutput flag set for every MIME attachment it doesn't have
# an internal viewer defined for. If such an entry is found, mutt will
# use the viewer defined in that entry to convert the body part to text
# form.
#
#
# set include=ask-yes
#
# Name: include
# Type: quadoption
# Default: ask-yes
#
#
# Controls whether or not a copy of the message(s) you are replying to
# is included in your reply.
#
#
# set indent_string="> "
#
# Name: indent_string
# Type: string
# Default: "> "
#
#
# Specifies the string to prepend to each line of text quoted in a
# message to which you are replying. You are strongly encouraged not to
# change this value, as it tends to agitate the more fanatical netizens.
#
#
# set index_format="%4C %Z %{%b %d} %-15.15L (%4l) %s"
#
# Name: index_format
# Type: string
# Default: "%4C %Z %{%b %d} %-15.15L (%4l) %s"
#
#
# This variable allows you to customize the message index display to
# your personal taste.
#
# ``Format strings'' are similar to the strings used in the ``C''
# function printf to format output (see the man page for more detail).
# The following sequences are defined in Mutt:
#
# %a address of the author
# %b filename of the original message folder (think mailBox)
# %B the list to which the letter was sent, or else the folder name (%b).
# %c number of characters (bytes) in the message
# %C current message number
# %d date and time of the message in the format specified by
# ``date_format'' converted to sender's time zone
# %D date and time of the message in the format specified by
# ``date_format'' converted to the local time zone
# %e current message number in thread
# %E number of messages in current thread
# %f entire From: line (address + real name)
# %F author name, or recipient name if the message is from you
# %i message-id of the current message
# %l number of lines in the message
# %L If an address in the To or CC header field matches an address
# defined by the users ``lists'' command, this displays
# "To <list-name>", otherwise the same as %F.
# %m total number of message in the mailbox
# %M number of hidden messages if the thread is collapsed.
# %N message score
# %n author's real name (or address if missing)
# %O (_O_riginal save folder) Where mutt would formerly have
# stashed the message: list name or recipient name if no list
# %s subject of the message
# %S status of the message (N/D/d/!/r/*)
# %t `to:' field (recipients)
# %T the appropriate character from the $to_chars string
# %u user (login) name of the author
# %v first name of the author, or the recipient if the message is from you
# %y `x-label:' field, if present
# %Y `x-label' field, if present, and (1) not at part of a thread tree,
# (2) at the top of a thread, or (3) `x-label' is different from
# preceding message's `x-label'.
# %Z message status flags
# %{fmt} the date and time of the message is converted to sender's
# time zone, and ``fmt'' is expanded by the library function
# ``strftime''; a leading bang disables locales
# %[fmt] the date and time of the message is converted to the local
# time zone, and ``fmt'' is expanded by the library function
# ``strftime''; a leading bang disables locales
# %(fmt) the local date and time when the message was received.
# ``fmt'' is expanded by the library function ``strftime'';
# a leading bang disables locales
# %<fmt> the current local time. ``fmt'' is expanded by the library
# function ``strftime''; a leading bang disables locales.
# %>X right justify the rest of the string and pad with character "X"
# %|X pad to the end of the line with character "X"
#
#
# See also: ``$to_chars''.
#
#
# set ispell="/usr/local/bin/ispell"
#
# Name: ispell
# Type: path
# Default: "/usr/local/bin/ispell"
#
#
# How to invoke ispell (GNU's spell-checking software).
#
#
# set keep_flagged=no
#
# Name: keep_flagged
# Type: boolean
# Default: no
#
#
# If set, read messages marked as flagged will not be moved
# from your spool mailbox to your ``$mbox'' mailbox, or as a result of
# a ``mbox-hook'' command.
#
#
# set locale="C"
#
# Name: locale
# Type: string
# Default: "C"
#
#
# The locale used by strftime(3) to format dates. Legal values are
# the strings your system accepts for the locale variable LC_TIME.
#
#
# set mail_check=5
#
# Name: mail_check
# Type: number
# Default: 5
#
#
# This variable configures how often (in seconds) mutt should look for
# new mail.
#
#
# set mailcap_path=""
#
# Name: mailcap_path
# Type: string
# Default: ""
#
#
# This variable specifies which files to consult when attempting to
# display MIME bodies not directly supported by Mutt.
#
#
# set mailcap_sanitize=yes
#
# Name: mailcap_sanitize
# Type: boolean
# Default: yes
#
#
# If set, mutt will restrict possible characters in mailcap % expandos
# to a well-defined set of safe characters. This is the safe setting,
# but we are not sure it doesn't break some more advanced MIME stuff.
#
# DON'T CHANGE THIS SETTING UNLESS YOU ARE REALLY SURE WHAT YOU ARE
# DOING!
#
#
# set maildir_trash=no
#
# Name: maildir_trash
# Type: boolean
# Default: no
#
#
# If set, messages marked as deleted will be saved with the maildir
# (T)rashed flag instead of unlinked. NOTE: this only applies
# to maildir-style mailboxes. Setting it will have no effect on other
# mailbox types.
#
#
# set mark_old=yes
#
# Name: mark_old
# Type: boolean
# Default: yes
#
#
# Controls whether or not Mutt makes the distinction between new
# messages and old unread messages. By default, Mutt will
# mark new messages as old if you exit a mailbox without reading them.
# The next time you start Mutt, the messages will show up with an "O"
# next to them in the index menu, indicating that they are old. In
# order to make Mutt treat all unread messages as new only, you can
# unset this variable.
#
#
# set markers=yes
#
# Name: markers
# Type: boolean
# Default: yes
#
#
# Controls the display of wrapped lines in the internal pager. If set, a
# ``+'' marker is displayed at the beginning of wrapped lines. Also see
# the ``$smart_wrap'' variable.
#
#
# set mask="!^\\.[^.]"
#
# Name: mask
# Type: regular expression
# Default: "!^\\.[^.]"
#
#
# A regular expression used in the file browser, optionally preceded by
# the not operator ``!''. Only files whose names match this mask
# will be shown. The match is always case-sensitive.
#
#
# set mbox="~/mbox"
#
# Name: mbox
# Type: path
# Default: "~/mbox"
#
#
# This specifies the folder into which read mail in your ``$spoolfile''
# folder will be appended.
#
#
# set mbox_type=mbox
#
# Name: mbox_type
# Type: folder magic
# Default: mbox
#
#
# The default mailbox type used when creating new folders. May be any of
# mbox, MMDF, MH and Maildir.
#
#
# set metoo=no
#
# Name: metoo
# Type: boolean
# Default: no
#
#
# If unset, Mutt will remove your address from the list of recipients
# when replying to a message.
#
#
# set menu_scroll=no
#
# Name: menu_scroll
# Type: boolean
# Default: no
#
#
# When set, menus will be scrolled up or down one line when you
# attempt to move across a screen boundary. If unset, the screen
# is cleared and the next or previous page of the menu is displayed
# (useful for slow links to avoid many redraws).
#
#
# set meta_key=no
#
# Name: meta_key
# Type: boolean
# Default: no
#
#
# If set, forces Mutt to interpret keystrokes with the high bit (bit 8)
# set as if the user had pressed the ESC key and whatever key remains
# after having the high bit removed. For example, if the key pressed
# has an ASCII value of 0xf4, then this is treated as if the user had
# pressed ESC then ``x''. This is because the result of removing the
# high bit from ``0xf4'' is ``0x74'', which is the ASCII character
# ``x''.
#
#
# set mh_purge=no
#
# Name: mh_purge
# Type: boolean
# Default: no
#
#
# When unset, mutt will mimic mh's behaviour and rename deleted messages
# to ,<old file name> in mh folders instead of really deleting
# them. If the variable is set, the message files will simply be
# deleted.
#
#
# set mh_seq_flagged="flagged"
#
# Name: mh_seq_flagged
# Type: string
# Default: "flagged"
#
#
# The name of the MH sequence used for flagged messages.
#
#
# set mh_seq_replied="replied"
#
# Name: mh_seq_replied
# Type: string
# Default: "replied"
#
#
# The name of the MH sequence used to tag replied messages.
#
#
# set mh_seq_unseen="unseen"
#
# Name: mh_seq_unseen
# Type: string
# Default: "unseen"
#
#
# The name of the MH sequence used for unseen messages.
#
#
# set mime_forward=no
#
# Name: mime_forward
# Type: quadoption
# Default: no
#
#
# When set, the message you are forwarding will be attached as a
# separate MIME part instead of included in the main body of the
# message. This is useful for forwarding MIME messages so the receiver
# can properly view the message as it was delivered to you. If you like
# to switch between MIME and not MIME from mail to mail, set this
# variable to ask-no or ask-yes.
#
# Also see ``$forward_decode'' and ``$mime_forward_decode''.
#
#
# set mime_forward_decode=no
#
# Name: mime_forward_decode
# Type: boolean
# Default: no
#
#
# Controls the decoding of complex MIME messages into text/plain when
# forwarding a message while ``$mime_forward'' is set. Otherwise
# ``$forward_decode'' is used instead.
#
#
# set mime_forward_rest=yes
#
# Name: mime_forward_rest
# Type: quadoption
# Default: yes
#
#
# When forwarding multiple attachments of a MIME message from the recvattach
# menu, attachments which cannot be decoded in a reasonable manner will
# be attached to the newly composed message if this option is set.
#
#
# set mix_entry_format="%4n %c %-16s %a"
#
# Name: mix_entry_format
# Type: string
# Default: "%4n %c %-16s %a"
#
#
# This variable describes the format of a remailer line on the mixmaster
# chain selection screen. The following printf-like sequences are
# supported:
#
# %n The running number on the menu.
# %c Remailer capabilities.
# %s The remailer's short name.
# %a The remailer's e-mail address.
#
#
# set mixmaster="mixmaster"
#
# Name: mixmaster
# Type: path
# Default: "mixmaster"
#
#
# This variable contains the path to the Mixmaster binary on your
# system. It is used with various sets of parameters to gather the
# list of known remailers, and to finally send a message through the
# mixmaster chain.
#
#
# set move=ask-no
#
# Name: move
# Type: quadoption
# Default: ask-no
#
#
# Controls whether you will be asked to confirm moving read messages
# from your spool mailbox to your ``$mbox'' mailbox, or as a result of
# a ``mbox-hook'' command.
#
#
# set message_format="%s"
#
# Name: message_format
# Type: string
# Default: "%s"
#
#
# This is the string displayed in the ``attachment'' menu for
# attachments of type message/rfc822. For a full listing of defined
# escape sequences see the section on ``$index_format''.
#
#
# set pager="builtin"
#
# Name: pager
# Type: path
# Default: "builtin"
#
#
# This variable specifies which pager you would like to use to view
# messages. builtin means to use the builtin pager, otherwise this
# variable should specify the pathname of the external pager you would
# like to use.
#
# Using an external pager may have some disadvantages: Additional
# keystrokes are necessary because you can't call mutt functions
# directly from the pager, and screen resizes cause lines longer than
# the screen width to be badly formatted in the help menu.
#
#
# set pager_context=0
#
# Name: pager_context
# Type: number
# Default: 0
#
#
# This variable controls the number of lines of context that are given
# when displaying the next or previous page in the internal pager. By
# default, Mutt will display the line after the last one on the screen
# at the top of the next page (0 lines of context).
#
#
# set pager_format="-%Z- %C/%m: %-20.20n %s"
#
# Name: pager_format
# Type: string
# Default: "-%Z- %C/%m: %-20.20n %s"
#
#
# This variable controls the format of the one-line message ``status''
# displayed before each message in either the internal or an external
# pager. The valid sequences are listed in the ``$index_format''
# section.
#
#
# set pager_index_lines=0
#
# Name: pager_index_lines
# Type: number
# Default: 0
#
#
# Determines the number of lines of a mini-index which is shown when in
# the pager. The current message, unless near the top or bottom of the
# folder, will be roughly one third of the way down this mini-index,
# giving the reader the context of a few messages before and after the
# message. This is useful, for example, to determine how many messages
# remain to be read in the current thread. One of the lines is reserved
# for the status bar from the index, so a pager_index_lines of 6
# will only show 5 lines of the actual index. A value of 0 results in
# no index being shown. If the number of messages in the current folder
# is less than pager_index_lines, then the index will only use as
# many lines as it needs.
#
#
# set pager_stop=no
#
# Name: pager_stop
# Type: boolean
# Default: no
#
#
# When set, the internal-pager will not move to the next message
# when you are at the end of a message and invoke the next-page
# function.
#
#
# set pgp_autosign=no
#
# Name: pgp_autosign
# Type: boolean
# Default: no
#
#
# Setting this variable will cause Mutt to always attempt to PGP/MIME
# sign outgoing messages. This can be overridden by use of the pgp-
# menu, when signing is not required or encryption is requested as
# well.
#
#
# set pgp_autoencrypt=no
#
# Name: pgp_autoencrypt
# Type: boolean
# Default: no
#
#
# Setting this variable will cause Mutt to always attempt to PGP/MIME
# encrypt outgoing messages. This is probably only useful in connection
# to the send-hook command. It can be overridden by use of the
# pgp-menu, when encryption is not required or signing is
# requested as well.
#
#
# set pgp_ignore_subkeys=yes
#
# Name: pgp_ignore_subkeys
# Type: boolean
# Default: yes
#
#
# Setting this variable will cause Mutt to ignore OpenPGP subkeys. Instead,
# the principal key will inherit the subkeys' capabilities. Unset this
# if you want to play interesting key selection games.
#
#
# set pgp_entry_format="%4n %t%f %4l/0x%k %-4a %2c %u"
#
# Name: pgp_entry_format
# Type: string
# Default: "%4n %t%f %4l/0x%k %-4a %2c %u"
#
#
# This variable allows you to customize the PGP key selection menu to
# your personal taste. This string is similar to ``$index_format'', but
# has its own set of printf()-like sequences:
#
# %n number
# %k key id
# %u user id
# %a algorithm
# %l key length
# %f flags
# %c capabilities
# %t trust/validity of the key-uid association
# %[<s>] date of the key where <s> is an strftime(3) expression
#
#
# set pgp_good_sign=""
#
# Name: pgp_good_sign
# Type: regular expression
# Default: ""
#
#
# If you assign a text to this variable, then a PGP signature is only
# considered verified if the output from $pgp_verify_command contains
# the text. Use this variable if the exit code from the command is 0
# even for bad signatures.
#
#
# set pgp_long_ids=no
#
# Name: pgp_long_ids
# Type: boolean
# Default: no
#
#
# If set, use 64 bit PGP key IDs. Unset uses the normal 32 bit Key IDs.
#
#
# set pgp_replyencrypt=yes
#
# Name: pgp_replyencrypt
# Type: boolean
# Default: yes
#
#
# If set, automatically PGP encrypt replies to messages which are
# encrypted.
#
#
# set pgp_replysign=no
#
# Name: pgp_replysign
# Type: boolean
# Default: no
#
#
# If set, automatically PGP sign replies to messages which are signed.
#
# Note: this does not work on messages that are encrypted
# and signed!
#
#
# set pgp_replysignencrypted=no
#
# Name: pgp_replysignencrypted
# Type: boolean
# Default: no
#
#
# If set, automatically PGP sign replies to messages which are
# encrypted. This makes sense in combination with
# ``$pgp_replyencrypt'', because it allows you to sign all messages
# which are automatically encrypted. This works around the problem
# noted in ``$pgp_replysign'', that mutt is not able to find out
# whether an encrypted message is also signed.
#
#
# set pgp_retainable_sigs=no
#
# Name: pgp_retainable_sigs
# Type: boolean
# Default: no
#
#
# If set, signed and encrypted messages will consist of nested
# multipart/signed and multipart/encrypted body parts.
#
# This is useful for applications like encrypted and signed mailing
# lists, where the outer layer (multipart/encrypted) can be easily
# removed, while the inner multipart/signed part is retained.
#
#
# set pgp_show_unusable=yes
#
# Name: pgp_show_unusable
# Type: boolean
# Default: yes
#
#
# If set, mutt will display non-usable keys on the PGP key selection
# menu. This includes keys which have been revoked, have expired, or
# have been marked as ``disabled'' by the user.
#
#
# set pgp_sign_as=""
#
# Name: pgp_sign_as
# Type: string
# Default: ""
#
#
# If you have more than one key pair, this option allows you to specify
# which of your private keys to use. It is recommended that you use the
# keyid form to specify your key (e.g., ``0x00112233'').
#
#
# set pgp_strict_enc=yes
#
# Name: pgp_strict_enc
# Type: boolean
# Default: yes
#
#
# If set, Mutt will automatically encode PGP/MIME signed messages as
# quoted-printable. Please note that unsetting this variable may
# lead to problems with non-verifyable PGP signatures, so only change
# this if you know what you are doing.
#
#
# set pgp_timeout=300
#
# Name: pgp_timeout
# Type: number
# Default: 300
#
#
# The number of seconds after which a cached passphrase will expire if
# not used.
#
#
# set pgp_verify_sig=yes
#
# Name: pgp_verify_sig
# Type: quadoption
# Default: yes
#
#
# If ``yes'', always attempt to verify PGP/MIME signatures. If ``ask-yes''
# or ``ask-no'',
# ask whether or not to verify the signature. If ``no'', never attempt
# to verify PGP/MIME signatures.
#
#
# set pgp_sort_keys=address
#
# Name: pgp_sort_keys
# Type: sort order
# Default: address
#
#
# Specifies how the entries in the `pgp keys' menu are sorted. The
# following are legal values:
#
# address sort alphabetically by user id
# keyid sort alphabetically by key id
# date sort by key creation date
# trust sort by the trust of the key
#
#
# If you prefer reverse order of the above values, prefix it with
# `reverse-'.
#
#
# set pgp_create_traditional=no
#
# Name: pgp_create_traditional
# Type: quadoption
# Default: no
#
#
# This option controls whether Mutt generates old-style PGP encrypted
# or signed messages under certain circumstances.
#
# Note that PGP/MIME will be used automatically for messages which have
# a character set different from us-ascii, or which consist of more than
# a single MIME part.
#
# Also note that using the old-style PGP message format is strongly
# deprecated.
#
#
# set pgp_decode_command=""
#
# Name: pgp_decode_command
# Type: string
# Default: ""
#
#
# This format strings specifies a command which is used to decode
# application/pgp attachments.
#
# The PGP command formats have their own set of printf-like sequences:
#
# %p Expands to PGPPASSFD=0 when a pass phrase is needed, to an empty
# string otherwise. Note: This may be used with a %? construct.
# %f Expands to the name of a file containing a message.
# %s Expands to the name of a file containing the signature part
# of a multipart/signed attachment when verifying it.
# %a The value of $pgp_sign_as.
# %r One or more key IDs.
#
#
# For examples on how to configure these formats for the various versions
# of PGP which are floating around, see the pgp*.rc and gpg.rc files in
# the samples/ subdirectory which has been installed on your system
# alongside the documentation.
#
#
# set pgp_getkeys_command=""
#
# Name: pgp_getkeys_command
# Type: string
# Default: ""
#
#
# This command is invoked whenever mutt will need public key information.
# %r is the only printf-like sequence used with this format.
#
#
# set pgp_verify_command=""
#
# Name: pgp_verify_command
# Type: string
# Default: ""
#
#
# This command is used to verify PGP/MIME signatures.
#
#
# set pgp_decrypt_command=""
#
# Name: pgp_decrypt_command
# Type: string
# Default: ""
#
#
# This command is used to decrypt a PGP/MIME encrypted message.
#
#
# set pgp_clearsign_command=""
#
# Name: pgp_clearsign_command
# Type: string
# Default: ""
#
#
# This format is used to create a "clearsigned" old-style PGP attachment.
# Note that the use of this format is strongly deprecated.
#
#
# set pgp_sign_command=""
#
# Name: pgp_sign_command
# Type: string
# Default: ""
#
#
# This command is used to create the detached PGP signature for a
# multipart/signed PGP/MIME body part.
#
#
# set pgp_encrypt_sign_command=""
#
# Name: pgp_encrypt_sign_command
# Type: string
# Default: ""
#
#
# This command is used to combinedly sign/encrypt a body part.
#
#
# set pgp_encrypt_only_command=""
#
# Name: pgp_encrypt_only_command
# Type: string
# Default: ""
#
#
# This command is used to encrypt a body part without signing it.
#
#
# set pgp_import_command=""
#
# Name: pgp_import_command
# Type: string
# Default: ""
#
#
# This command is used to import a key from a message into
# the user's public key ring.
#
#
# set pgp_export_command=""
#
# Name: pgp_export_command
# Type: string
# Default: ""
#
#
# This command is used to export a public key from the user's
# key ring.
#
#
# set pgp_verify_key_command=""
#
# Name: pgp_verify_key_command
# Type: string
# Default: ""
#
#
# This command is used to verify key information from the key selection
# menu.
#
#
# set pgp_list_secring_command=""
#
# Name: pgp_list_secring_command
# Type: string
# Default: ""
#
#
# This command is used to list the secret key ring's contents. The
# output format must be analogous to the one used by
# gpg --list-keys --with-colons.
#
# This format is also generated by the pgpring utility which comes
# with mutt.
#
#
# set pgp_list_pubring_command=""
#
# Name: pgp_list_pubring_command
# Type: string
# Default: ""
#
#
# This command is used to list the public key ring's contents. The
# output format must be analogous to the one used by
# gpg --list-keys --with-colons.
#
# This format is also generated by the pgpring utility which comes
# with mutt.
#
#
# set forward_decrypt=yes
#
# Name: forward_decrypt
# Type: boolean
# Default: yes
#
#
# Controls the handling of encrypted messages when forwarding a message.
# When set, the outer layer of encryption is stripped off. This
# variable is only used if ``$mime_forward'' is set and
# ``$mime_forward_decode'' is unset.
#
#
# set ssl_starttls=yes
#
# Name: ssl_starttls
# Type: quadoption
# Default: yes
#
#
# If set (the default), mutt will attempt to use STARTTLS on servers
# advertising the capability. When unset, mutt will not attempt to
# use STARTTLS regardless of the server's capabilities.
#
#
# set certificate_file=""
#
# Name: certificate_file
# Type: path
# Default: ""
#
#
# This variable specifies the file where the certificates you trust
# are saved. When an unknown certificate is encountered, you are asked
# if you accept it or not. If you accept it, the certificate can also
# be saved in this file and further connections are automatically
# accepted.
#
# You can also manually add CA certificates in this file. Any server
# certificate that is signed with one of these CA certificates are
# also automatically accepted.
#
# Example: set certificate_file=~/.mutt/certificates
#
#
# set ssl_usesystemcerts=yes
#
# Name: ssl_usesystemcerts
# Type: boolean
# Default: yes
#
#
# If set to yes, mutt will use CA certificates in the
# system-wide certificate store when checking if server certificate
# is signed by a trusted CA.
#
#
# set entropy_file=""
#
# Name: entropy_file
# Type: path
# Default: ""
#
#
# The file which includes random data that is used to initalize SSL
# library functions.
#
#
# set ssl_use_sslv2=yes
#
# Name: ssl_use_sslv2
# Type: boolean
# Default: yes
#
#
# This variables specifies whether to attempt to use SSLv2 in the
# SSL authentication process.
#
#
# set ssl_use_sslv3=yes
#
# Name: ssl_use_sslv3
# Type: boolean
# Default: yes
#
#
# This variables specifies whether to attempt to use SSLv3 in the
# SSL authentication process.
#
#
# set ssl_use_tlsv1=yes
#
# Name: ssl_use_tlsv1
# Type: boolean
# Default: yes
#
#
# This variables specifies whether to attempt to use TLSv1 in the
# SSL authentication process.
#
#
# set pipe_split=no
#
# Name: pipe_split
# Type: boolean
# Default: no
#
#
# Used in connection with the pipe-message command and the ``tag-
# prefix'' operator. If this variable is unset, when piping a list of
# tagged messages Mutt will concatenate the messages and will pipe them
# as a single folder. When set, Mutt will pipe the messages one by one.
# In both cases the messages are piped in the current sorted order,
# and the ``$pipe_sep'' separator is added after each message.
#
#
# set pipe_decode=no
#
# Name: pipe_decode
# Type: boolean
# Default: no
#
#
# Used in connection with the pipe-message command. When unset,
# Mutt will pipe the messages without any preprocessing. When set, Mutt
# will weed headers and will attempt to PGP/MIME decode the messages
# first.
#
#
# set pipe_sep="\n"
#
# Name: pipe_sep
# Type: string
# Default: "\n"
#
#
# The separator to add between messages when piping a list of tagged
# messages to an external Unix command.
#
#
# set pop_authenticators=""
#
# Name: pop_authenticators
# Type: string
# Default: ""
#
#
# This is a colon-delimited list of authentication methods mutt may
# attempt to use to log in to an POP server, in the order mutt should
# try them. Authentication methods are either 'user', 'apop' or any
# SASL mechanism, eg 'digest-md5', 'gssapi' or 'cram-md5'.
# This parameter is case-insensitive. If this parameter is unset
# (the default) mutt will try all available methods, in order from
# most-secure to least-secure.
#
# Example: set pop_authenticators="digest-md5:apop:user"
#
#
# set pop_auth_try_all=yes
#
# Name: pop_auth_try_all
# Type: boolean
# Default: yes
#
#
# If set, Mutt will try all available methods. When unset, Mutt will
# only fall back to other authentication methods if the previous
# methods are unavailable. If a method is available but authentication
# fails, Mutt will not connect to the POP server.
#
#
# set pop_checkinterval=60
#
# Name: pop_checkinterval
# Type: number
# Default: 60
#
#
# This variable configures how often (in seconds) POP should look for
# new mail.
#
#
# set pop_delete=ask-no
#
# Name: pop_delete
# Type: quadoption
# Default: ask-no
#
#
# If set, Mutt will delete successfully downloaded messages from the POP
# server when using the fetch-mail function. When unset, Mutt will
# download messages but also leave them on the POP server.
#
#
# set pop_host=""
#
# Name: pop_host
# Type: string
# Default: ""
#
#
# The name of your POP server for the fetch-mail function. You
# can also specify an alternative port, username and password, ie:
#
# [pop[s]://][username[:password]@]popserver[:port]
#
#
# set pop_last=no
#
# Name: pop_last
# Type: boolean
# Default: no
#
#
# If this variable is set, mutt will try to use the "LAST" POP command
# for retrieving only unread messages from the POP server when using
# the fetch-mail function.
#
#
# set pop_reconnect=ask-yes
#
# Name: pop_reconnect
# Type: quadoption
# Default: ask-yes
#
#
# Controls whether or not Mutt will try to reconnect to POP server when
# connection lost.
#
#
# set pop_user=""
#
# Name: pop_user
# Type: string
# Default: ""
#
#
# Your login name on the POP server.
#
# This variable defaults to your user name on the local machine.
#
#
# set pop_pass=""
#
# Name: pop_pass
# Type: string
# Default: ""
#
#
# Specifies the password for your POP account. If unset, Mutt will
# prompt you for your password when you open POP mailbox.
# Warning: you should only use this option when you are on a
# fairly secure machine, because the superuser can read your muttrc
# even if you are the only one who can read the file.
#
#
# set post_indent_string=""
#
# Name: post_indent_string
# Type: string
# Default: ""
#
#
# Similar to the ``$attribution'' variable, Mutt will append this
# string after the inclusion of a message which is being replied to.
#
#
# set postpone=ask-yes
#
# Name: postpone
# Type: quadoption
# Default: ask-yes
#
#
# Controls whether or not messages are saved in the ``$postponed''
# mailbox when you elect not to send immediately.
#
#
# set postponed="~/postponed"
#
# Name: postponed
# Type: path
# Default: "~/postponed"
#
#
# Mutt allows you to indefinitely ``postpone sending a message'' which
# you are editing. When you choose to postpone a message, Mutt saves it
# in the mailbox specified by this variable. Also see the ``$postpone''
# variable.
#
#
# set preconnect=""
#
# Name: preconnect
# Type: string
# Default: ""
#
#
# If set, a shell command to be executed if mutt fails to establish
# a connection to the server. This is useful for setting up secure
# connections, e.g. with ssh(1). If the command returns a nonzero
# status, mutt gives up opening the server. Example:
#
# preconnect="ssh -f -q -L 1234:mailhost.net:143 mailhost.net
# sleep 20 < /dev/null > /dev/null"
#
# Mailbox 'foo' on mailhost.net can now be reached
# as '{localhost:1234}foo'.
#
# NOTE: For this example to work, you must be able to log in to the
# remote machine without having to enter a password.
#
#
# set print=ask-no
#
# Name: print
# Type: quadoption
# Default: ask-no
#
#
# Controls whether or not Mutt asks for confirmation before printing.
# This is useful for people (like me) who accidentally hit ``p'' often.
#
#
# set print_command="lpr"
#
# Name: print_command
# Type: path
# Default: "lpr"
#
#
# This specifies the command pipe that should be used to print messages.
#
#
# set print_decode=yes
#
# Name: print_decode
# Type: boolean
# Default: yes
#
#
# Used in connection with the print-message command. If this
# option is set, the message is decoded before it is passed to the
# external command specified by $print_command. If this option
# is unset, no processing will be applied to the message when
# printing it. The latter setting may be useful if you are using
# some advanced printer filter which is able to properly format
# e-mail messages for printing.
#
#
# set print_split=no
#
# Name: print_split
# Type: boolean
# Default: no
#
#
# Used in connection with the print-message command. If this option
# is set, the command sepcified by $print_command is executed once for
# each message which is to be printed. If this option is unset,
# the command specified by $print_command is executed only once, and
# all the messages are concatenated, with a form feed as the message
# separator.
#
# Those who use the enscript(1) program's mail-printing mode will
# most likely want to set this option.
#
#
# set prompt_after=yes
#
# Name: prompt_after
# Type: boolean
# Default: yes
#
#
# If you use an external ``$pager'', setting this variable will
# cause Mutt to prompt you for a command when the pager exits rather
# than returning to the index menu. If unset, Mutt will return to the
# index menu when the external pager exits.
#
#
# set query_command=""
#
# Name: query_command
# Type: path
# Default: ""
#
#
# This specifies the command that mutt will use to make external address
# queries. The string should contain a %s, which will be substituted
# with the query string the user types. See ``query'' for more
# information.
#
#
# set quit=yes
#
# Name: quit
# Type: quadoption
# Default: yes
#
#
# This variable controls whether ``quit'' and ``exit'' actually quit
# from mutt. If it set to yes, they do quit, if it is set to no, they
# have no effect, and if it is set to ask-yes or ask-no, you are
# prompted for confirmation when you try to quit.
#
#
# set quote_regexp="^([ \t]*[|>:}#])+"
#
# Name: quote_regexp
# Type: regular expression
# Default: "^([ \t]*[|>:}#])+"
#
#
# A regular expression used in the internal-pager to determine quoted
# sections of text in the body of a message.
#
# Note: In order to use the quotedx patterns in the
# internal pager, you need to set this to a regular expression that
# matches exactly the quote characters at the beginning of quoted
# lines.
#
#
# set read_inc=10
#
# Name: read_inc
# Type: number
# Default: 10
#
#
# If set to a value greater than 0, Mutt will display which message it
# is currently on when reading a mailbox. The message is printed after
# read_inc messages have been read (e.g., if set to 25, Mutt will
# print a message when it reads message 25, and then again when it gets
# to message 50). This variable is meant to indicate progress when
# reading large mailboxes which may take some time.
# When set to 0, only a single message will appear before the reading
# the mailbox.
#
# Also see the ``$write_inc'' variable.
#
#
# set read_only=no
#
# Name: read_only
# Type: boolean
# Default: no
#
#
# If set, all folders are opened in read-only mode.
#
#
# set realname=""
#
# Name: realname
# Type: string
# Default: ""
#
#
# This variable specifies what "real" or "personal" name should be used
# when sending messages.
#
# By default, this is the GCOS field from /etc/passwd. Note that this
# variable will not be used when the user has set a real name
# in the $from variable.
#
#
# set recall=ask-yes
#
# Name: recall
# Type: quadoption
# Default: ask-yes
#
#
# Controls whether or not you are prompted to recall postponed messages
# when composing a new message. Also see ``$postponed''.
#
# Setting this variable to ``yes'' is not generally useful, and thus not
# recommended.
#
#
# set record=""
#
# Name: record
# Type: path
# Default: ""
#
#
# This specifies the file into which your outgoing messages should be
# appended. (This is meant as the primary method for saving a copy of
# your messages, but another way to do this is using the ``my_hdr''
# command to create a Bcc: field with your email address in it.)
#
# The value of $record is overridden by the ``$force_name'' and
# ``$save_name'' variables, and the ``fcc-hook'' command.
#
#
# set reply_regexp="^(re([\\[0-9\\]+])*|aw):[ \t]*"
#
# Name: reply_regexp
# Type: regular expression
# Default: "^(re([\\[0-9\\]+])*|aw):[ \t]*"
#
#
# A regular expression used to recognize reply messages when threading
# and replying. The default value corresponds to the English "Re:" and
# the German "Aw:".
#
#
# set reply_self=no
#
# Name: reply_self
# Type: boolean
# Default: no
#
#
# If unset and you are replying to a message sent by you, Mutt will
# assume that you want to reply to the recipients of that message rather
# than to yourself.
#
#
# set reply_to=ask-yes
#
# Name: reply_to
# Type: quadoption
# Default: ask-yes
#
#
# If set, Mutt will ask you if you want to use the address listed in the
# Reply-To: header field when replying to a message. If you answer no,
# it will use the address in the From: header field instead. This
# option is useful for reading a mailing list that sets the Reply-To:
# header field to the list address and you want to send a private
# message to the author of a message.
#
#
# set resolve=yes
#
# Name: resolve
# Type: boolean
# Default: yes
#
#
# When set, the cursor will be automatically advanced to the next
# (possibly undeleted) message whenever a command that modifies the
# current message is executed.
#
#
# set reverse_alias=no
#
# Name: reverse_alias
# Type: boolean
# Default: no
#
#
# This variable controls whether or not Mutt will display the "personal"
# name from your aliases in the index menu if it finds an alias that
# matches the message's sender. For example, if you have the following
# alias:
#
# alias juser abd30425@somewhere.net (Joe User)
#
# and then you receive mail which contains the following header:
#
# From: abd30425@somewhere.net
#
# It would be displayed in the index menu as ``Joe User'' instead of
# ``abd30425@somewhere.net.'' This is useful when the person's e-mail
# address is not human friendly (like CompuServe addresses).
#
#
# set reverse_name=no
#
# Name: reverse_name
# Type: boolean
# Default: no
#
#
# It may sometimes arrive that you receive mail to a certain machine,
# move the messages to another machine, and reply to some the messages
# from there. If this variable is set, the default From: line of
# the reply messages is built using the address where you received the
# messages you are replying to. If the variable is unset, the
# From: line will use your address on the current machine.
#
#
# set reverse_realname=yes
#
# Name: reverse_realname
# Type: boolean
# Default: yes
#
#
# This variable fine-tunes the behaviour of the reverse_name feature.
# When it is set, mutt will use the address from incoming messages as-is,
# possibly including eventual real names. When it is unset, mutt will
# override any such realnames with the setting of the realname variable.
#
#
# set rfc2047_parameters=no
#
# Name: rfc2047_parameters
# Type: boolean
# Default: no
#
#
# When this variable is set, Mutt will decode RFC-2047-encoded MIME
# parameters. You want to set this variable when mutt suggests you
# to save attachments to files named like this:
# =?iso-8859-1?Q?file=5F=E4=5F991116=2Ezip?=
#
# When this variable is set interactively, the change doesn't have
# the desired effect before you have changed folders.
#
# Note that this use of RFC 2047's encoding is explicitly,
# prohibited by the standard, but nevertheless encountered in the
# wild.
# Also note that setting this parameter will not have the effect
# that mutt generates this kind of encoding. Instead, mutt will
# unconditionally use the encoding specified in RFC 2231.
#
#
# set save_address=no
#
# Name: save_address
# Type: boolean
# Default: no
#
#
# If set, mutt will take the sender's full address when choosing a
# default folder for saving a mail. If ``$save_name'' or ``$force_name''
# is set too, the selection of the fcc folder will be changed as well.
#
#
# set save_empty=yes
#
# Name: save_empty
# Type: boolean
# Default: yes
#
#
# When unset, mailboxes which contain no saved messages will be removed
# when closed (the exception is ``$spoolfile'' which is never removed).
# If set, mailboxes are never removed.
#
# Note: This only applies to mbox and MMDF folders, Mutt does not
# delete MH and Maildir directories.
#
#
# set save_name=no
#
# Name: save_name
# Type: boolean
# Default: no
#
#
# This variable controls how copies of outgoing messages are saved.
# When set, a check is made to see if a mailbox specified by the
# recipient address exists (this is done by searching for a mailbox in
# the ``$folder'' directory with the username part of the
# recipient address). If the mailbox exists, the outgoing message will
# be saved to that mailbox, otherwise the message is saved to the
# ``$record'' mailbox.
#
# Also see the ``$force_name'' variable.
#
#
# set score=yes
#
# Name: score
# Type: boolean
# Default: yes
#
#
# When this variable is unset, scoring is turned off. This can
# be useful to selectively disable scoring for certain folders when the
# ``$score_threshold_delete'' variable and friends are used.
#
#
# set score_threshold_delete=-1
#
# Name: score_threshold_delete
# Type: number
# Default: -1
#
#
# Messages which have been assigned a score equal to or lower than the value
# of this variable are automatically marked for deletion by mutt. Since
# mutt scores are always greater than or equal to zero, the default setting
# of this variable will never mark a message for deletion.
#
#
# set score_threshold_flag=9999
#
# Name: score_threshold_flag
# Type: number
# Default: 9999
#
#
# Messages wich have been assigned a score greater than or equal to this
# variable's value are automatically marked "flagged".
#
#
# set score_threshold_read=-1
#
# Name: score_threshold_read
# Type: number
# Default: -1
#
#
# Messages which have been assigned a score equal to or lower than the value
# of this variable are automatically marked as read by mutt. Since
# mutt scores are always greater than or equal to zero, the default setting
# of this variable will never mark a message read.
#
#
# set send_charset="us-ascii:iso-8859-1:utf-8"
#
# Name: send_charset
# Type: string
# Default: "us-ascii:iso-8859-1:utf-8"
#
#
# A list of character sets for outgoing messages. Mutt will use the
# first character set into which the text can be converted exactly.
# If your ``$charset'' is not iso-8859-1 and recipients may not
# understand UTF-8, it is advisable to include in the list an
# appropriate widely used standard character set (such as
# iso-8859-2, koi8-r or iso-2022-jp) either instead of or after
# "iso-8859-1".
#
#
# set sendmail="/usr/sbin/sendmail -oem -oi"
#
# Name: sendmail
# Type: path
# Default: "/usr/sbin/sendmail -oem -oi"
#
#
# Specifies the program and arguments used to deliver mail sent by Mutt.
# Mutt expects that the specified program interprets additional
# arguments as recipient addresses.
#
#
# set sendmail_wait=0
#
# Name: sendmail_wait
# Type: number
# Default: 0
#
#
# Specifies the number of seconds to wait for the ``$sendmail'' process
# to finish before giving up and putting delivery in the background.
#
# Mutt interprets the value of this variable as follows:
# >0 number of seconds to wait for sendmail to finish before continuing
# 0 wait forever for sendmail to finish
# <0 always put sendmail in the background without waiting
#
#
# Note that if you specify a value other than 0, the output of the child
# process will be put in a temporary file. If there is some error, you
# will be informed as to where to find the output.
#
#
# set shell=""
#
# Name: shell
# Type: path
# Default: ""
#
#
# Command to use when spawning a subshell. By default, the user's login
# shell from /etc/passwd is used.
#
#
# set sig_dashes=yes
#
# Name: sig_dashes
# Type: boolean
# Default: yes
#
#
# If set, a line containing ``-- '' will be inserted before your
# ``$signature''. It is strongly recommended that you not unset
# this variable unless your ``signature'' contains just your name. The
# reason for this is because many software packages use ``-- \n'' to
# detect your signature. For example, Mutt has the ability to highlight
# the signature in a different color in the builtin pager.
#
#
# set sig_on_top=no
#
# Name: sig_on_top
# Type: boolean
# Default: no
#
#
# If set, the signature will be included before any quoted or forwarded
# text. It is strongly recommended that you do not set this variable
# unless you really know what you are doing, and are prepared to take
# some heat from netiquette guardians.
#
#
# set signature="~/.signature"
#
# Name: signature
# Type: path
# Default: "~/.signature"
#
#
# Specifies the filename of your signature, which is appended to all
# outgoing messages. If the filename ends with a pipe (``|''), it is
# assumed that filename is a shell command and input should be read from
# its stdout.
#
#
# set simple_search="~f %s | ~s %s"
#
# Name: simple_search
# Type: string
# Default: "~f %s | ~s %s"
#
#
# Specifies how Mutt should expand a simple search into a real search
# pattern. A simple search is one that does not contain any of the ~
# operators. See ``patterns'' for more information on search patterns.
#
# For example, if you simply type joe at a search or limit prompt, Mutt
# will automatically expand it to the value specified by this variable.
# For the default value it would be:
#
# ~f joe | ~s joe
#
#
# set smart_wrap=yes
#
# Name: smart_wrap
# Type: boolean
# Default: yes
#
#
# Controls the display of lines longer then the screen width in the
# internal pager. If set, long lines are wrapped at a word boundary. If
# unset, lines are simply wrapped at the screen edge. Also see the
# ``$markers'' variable.
#
#
# set smileys="(>From )|(:[-^]?[][)(><}{|/DP])"
#
# Name: smileys
# Type: regular expression
# Default: "(>From )|(:[-^]?[][)(><}{|/DP])"
#
#
# The pager uses this variable to catch some common false
# positives of ``$quote_regexp'', most notably smileys in the beginning
# of a line
#
#
# set sleep_time=1
#
# Name: sleep_time
# Type: number
# Default: 1
#
#
# Specifies time, in seconds, to pause while displaying certain informational
# messages, while moving from folder to folder and after expunging
# messages from the current folder. The default is to pause one second, so
# a value of zero for this option suppresses the pause.
#
#
# set sort=date
#
# Name: sort
# Type: sort order
# Default: date
#
#
# Specifies how to sort messages in the index menu. Valid values
# are:
#
# date or date-sent
# date-received
# from
# mailbox-order (unsorted)
# score
# size
# subject
# threads
# to
#
# You may optionally use the reverse- prefix to specify reverse sorting
# order (example: set sort=reverse-date-sent).
#
#
# set sort_alias=alias
#
# Name: sort_alias
# Type: sort order
# Default: alias
#
#
# Specifies how the entries in the `alias' menu are sorted. The
# following are legal values:
#
# address (sort alphabetically by email address)
# alias (sort alphabetically by alias name)
# unsorted (leave in order specified in .muttrc)
#
#
# set sort_aux=date
#
# Name: sort_aux
# Type: sort order
# Default: date
#
#
# When sorting by threads, this variable controls how threads are sorted
# in relation to other threads, and how the branches of the thread trees
# are sorted. This can be set to any value that ``$sort'' can, except
# threads (in that case, mutt will just use date-sent). You can also
# specify the last- prefix in addition to the reverse- prefix, but last-
# must come after reverse-. The last- prefix causes messages to be
# sorted against its siblings by which has the last descendant, using
# the rest of sort_aux as an ordering. For instance, set sort_aux=last-
# date-received would mean that if a new message is received in a
# thread, that thread becomes the last one displayed (or the first, if
# you have set sort=reverse-threads.) Note: For reversed ``$sort''
# order $sort_aux is reversed again (which is not the right thing to do,
# but kept to not break any existing configuration setting).
#
#
# set sort_browser=subject
#
# Name: sort_browser
# Type: sort order
# Default: subject
#
#
# Specifies how to sort entries in the file browser. By default, the
# entries are sorted alphabetically. Valid values:
#
# alpha (alphabetically)
# date
# size
# unsorted
#
# You may optionally use the reverse- prefix to specify reverse sorting
# order (example: set sort_browser=reverse-date).
#
#
# set sort_re=yes
#
# Name: sort_re
# Type: boolean
# Default: yes
#
#
# This variable is only useful when sorting by threads with
# ``$strict_threads'' unset. In that case, it changes the heuristic
# mutt uses to thread messages by subject. With sort_re set, mutt will
# only attach a message as the child of another message by subject if
# the subject of the child message starts with a substring matching the
# setting of ``$reply_regexp''. With sort_re unset, mutt will attach
# the message whether or not this is the case, as long as the
# non-``$reply_regexp'' parts of both messages are identical.
#
#
# set spoolfile=""
#
# Name: spoolfile
# Type: path
# Default: ""
#
#
# If your spool mailbox is in a non-default place where Mutt cannot find
# it, you can specify its location with this variable. Mutt will
# automatically set this variable to the value of the environment
# variable $MAIL if it is not set.
#
#
# set status_chars="-*%A"
#
# Name: status_chars
# Type: string
# Default: "-*%A"
#
#
# Controls the characters used by the "%r" indicator in
# ``$status_format''. The first character is used when the mailbox is
# unchanged. The second is used when the mailbox has been changed, and
# it needs to be resynchronized. The third is used if the mailbox is in
# read-only mode, or if the mailbox will not be written when exiting
# that mailbox (You can toggle whether to write changes to a mailbox
# with the toggle-write operation, bound by default to "%"). The fourth
# is used to indicate that the current folder has been opened in attach-
# message mode (Certain operations like composing a new mail, replying,
# forwarding, etc. are not permitted in this mode).
#
#
# set status_format="-%r-Mutt: %f [Msgs:%?M?%M/?%m%?n? New:%n?%?o? Old:%o?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?%?l? %l?]---(%s/%S)-%>-(%P)---"
#
# Name: status_format
# Type: string
# Default: "-%r-Mutt: %f [Msgs:%?M?%M/?%m%?n? New:%n?%?o? Old:%o?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?%?l? %l?]---(%s/%S)-%>-(%P)---"
#
#
# Controls the format of the status line displayed in the index
# menu. This string is similar to ``$index_format'', but has its own
# set of printf()-like sequences:
#
# %b number of mailboxes with new mail *
# %d number of deleted messages *
# %h local hostname
# %f the full pathname of the current mailbox
# %F number of flagged messages *
# %l size (in bytes) of the current mailbox *
# %L size (in bytes) of the messages shown
# (i.e., which match the current limit) *
# %m the number of messages in the mailbox *
# %M the number of messages shown (i.e., which match the current limit) *
# %n number of new messages in the mailbox *
# %o number of old unread messages
# %p number of postponed messages *
# %P percentage of the way through the index
# %r modified/read-only/won't-write/attach-message indicator,
# according to $status_chars
# %s current sorting mode ($sort)
# %S current aux sorting method ($sort_aux)
# %t number of tagged messages *
# %u number of unread messages *
# %v Mutt version string
# %V currently active limit pattern, if any *
# %>X right justify the rest of the string and pad with "X"
# %|X pad to the end of the line with "X"
#
#
# * = can be optionally printed if nonzero
#
# Some of the above sequences can be used to optionally print a string
# if their value is nonzero. For example, you may only want to see the
# number of flagged messages if such messages exist, since zero is not
# particularly meaningful. To optionally print a string based upon one
# of the above sequences, the following construct is used
#
# %?<sequence_char>?<optional_string>?
#
# where sequence_char is a character from the table above, and
# optional_string is the string you would like printed if
# status_char is nonzero. optional_string may contain
# other sequence as well as normal text, but you may not nest
# optional strings.
#
# Here is an example illustrating how to optionally print the number of
# new messages in a mailbox:
# %?n?%n new messages.?
#
# Additionally you can switch between two strings, the first one, if a
# value is zero, the second one, if the value is nonzero, by using the
# following construct:
# %?<sequence_char>?<if_string>&<else_string>?
#
# You can additionally force the result of any printf-like sequence to
# be lowercase by prefixing the sequence character with an underscore
# (_) sign. For example, if you want to display the local hostname in
# lowercase, you would use:
# %_h
#
#
# set status_on_top=no
#
# Name: status_on_top
# Type: boolean
# Default: no
#
#
# Setting this variable causes the ``status bar'' to be displayed on
# the first line of the screen rather than near the bottom.
#
#
# set strict_threads=no
#
# Name: strict_threads
# Type: boolean
# Default: no
#
#
# If set, threading will only make use of the ``In-Reply-To'' and
# ``References'' fields when you ``$sort'' by message threads. By
# default, messages with the same subject are grouped together in
# ``pseudo threads.'' This may not always be desirable, such as in a
# personal mailbox where you might have several unrelated messages with
# the subject ``hi'' which will get grouped together.
#
#
# set suspend=yes
#
# Name: suspend
# Type: boolean
# Default: yes
#
#
# When unset, mutt won't stop when the user presses the terminal's
# susp key, usually ``control-Z''. This is useful if you run mutt
# inside an xterm using a command like xterm -e mutt.
#
#
# set text_flowed=no
#
# Name: text_flowed
# Type: boolean
# Default: no
#
#
# When set, mutt will generate text/plain; format=flowed attachments.
# This format is easier to handle for some mailing software, and generally
# just looks like ordinary text. To actually make use of this format's
# features, you'll need support in your editor.
#
# Note that $indent_string is ignored when this option is set.
#
#
# set thread_received=no
#
# Name: thread_received
# Type: boolean
# Default: no
#
#
# When set, mutt uses the date received rather than the date sent
# to thread messages by subject.
#
#
# set thorough_search=no
#
# Name: thorough_search
# Type: boolean
# Default: no
#
#
# Affects the ~b and ~h search operations described in
# section ``patterns'' above. If set, the headers and attachments of
# messages to be searched are decoded before searching. If unset,
# messages are searched as they appear in the folder.
#
#
# set tilde=no
#
# Name: tilde
# Type: boolean
# Default: no
#
#
# When set, the internal-pager will pad blank lines to the bottom of the
# screen with a tilde (~).
#
#
# set timeout=600
#
# Name: timeout
# Type: number
# Default: 600
#
#
# This variable controls the number of seconds Mutt will wait for
# a key to be pressed in the main menu before timing out and checking
# for new mail. A value of zero or less will cause Mutt not to ever
# time out.
#
#
# set tmpdir=""
#
# Name: tmpdir
# Type: path
# Default: ""
#
#
# This variable allows you to specify where Mutt will place its
# temporary files needed for displaying and composing messages.
#
#
# set to_chars=" +TCFL"
#
# Name: to_chars
# Type: string
# Default: " +TCFL"
#
#
# Controls the character used to indicate mail addressed to you. The
# first character is the one used when the mail is NOT addressed to your
# address (default: space). The second is used when you are the only
# recipient of the message (default: +). The third is when your address
# appears in the TO header field, but you are not the only recipient of
# the message (default: T). The fourth character is used when your
# address is specified in the CC header field, but you are not the only
# recipient. The fifth character is used to indicate mail that was sent
# by you. The sixth character is used to indicate when a mail
# was sent to a mailing-list you subscribe to (default: L).
#
#
# set tunnel=""
#
# Name: tunnel
# Type: string
# Default: ""
#
#
# Setting this variable will cause mutt to open a pipe to a command
# instead of a raw socket. You may be able to use this to set up
# preauthenticated connections to your IMAP/POP3 server. Example:
#
# tunnel="ssh -q mailhost.net /usr/local/libexec/imapd"
#
# NOTE: For this example to work you must be able to log in to the remote
# machine without having to enter a password.
#
#
# set use_8bitmime=no
#
# Name: use_8bitmime
# Type: boolean
# Default: no
#
#
# Warning: do not set this variable unless you are using a version
# of sendmail which supports the -B8BITMIME flag (such as sendmail
# 8.8.x) or you may not be able to send mail.
#
# When set, Mutt will invoke ``$sendmail'' with the -B8BITMIME
# flag when sending 8-bit messages to enable ESMTP negotiation.
#
#
# set use_domain=yes
#
# Name: use_domain
# Type: boolean
# Default: yes
#
#
# When set, Mutt will qualify all local addresses (ones without the
# @host portion) with the value of ``$hostname''. If unset, no
# addresses will be qualified.
#
#
# set use_from=yes
#
# Name: use_from
# Type: boolean
# Default: yes
#
#
# When set, Mutt will generate the `From:' header field when
# sending messages. If unset, no `From:' header field will be
# generated unless the user explicitly sets one using the ``my_hdr''
# command.
#
#
# set use_ipv6=yes
#
# Name: use_ipv6
# Type: boolean
# Default: yes
#
#
# When set, Mutt will look for IPv6 addresses of hosts it tries to
# contact. If this option is unset, Mutt will restrict itself to IPv4 addresses.
# Normally, the default should work.
#
#
# set user_agent=yes
#
# Name: user_agent
# Type: boolean
# Default: yes
#
#
# When set, mutt will add a "User-Agent" header to outgoing
# messages, indicating which version of mutt was used for composing
# them.
#
#
# set visual=""
#
# Name: visual
# Type: path
# Default: ""
#
#
# Specifies the visual editor to invoke when the ~v command is
# given in the builtin editor.
#
#
# set wait_key=yes
#
# Name: wait_key
# Type: boolean
# Default: yes
#
#
# Controls whether Mutt will ask you to press a key after shell-
# escape, pipe-message, pipe-entry, print-message,
# and print-entry commands.
#
# It is also used when viewing attachments with ``auto_view'', provided
# that the corresponding mailcap entry has a needsterminal flag,
# and the external program is interactive.
#
# When set, Mutt will always ask for a key. When unset, Mutt will wait
# for a key only if the external command returned a non-zero status.
#
#
# set weed=yes
#
# Name: weed
# Type: boolean
# Default: yes
#
#
# When set, mutt will weed headers when when displaying, forwarding,
# printing, or replying to messages.
#
#
# set wrap_search=yes
#
# Name: wrap_search
# Type: boolean
# Default: yes
#
#
# Controls whether searches wrap around the end of the mailbox.
#
# When set, searches will wrap around the first (or last) message. When
# unset, searches will not wrap.
#
#
# set wrapmargin=0
#
# Name: wrapmargin
# Type: number
# Default: 0
#
#
# Controls the margin left at the right side of the terminal when mutt's
# pager does smart wrapping.
#
#
# set write_inc=10
#
# Name: write_inc
# Type: number
# Default: 10
#
#
# When writing a mailbox, a message will be printed every
# write_inc messages to indicate progress. If set to 0, only a
# single message will be displayed before writing a mailbox.
#
# Also see the ``$read_inc'' variable.
#
#
# set write_bcc=yes
#
# Name: write_bcc
# Type: boolean
# Default: yes
#
#
# Controls whether mutt writes out the Bcc header when preparing
# messages to be sent. Exim users may wish to use this.
#
#
alias maria Maria Lovett <got2lovett@gmail.com>
alias alejandra Alejandra Marchessini <alemarchessini@hotmail.com>
alias phil Philip Syribeys <drsyribeys@comcast.net>
alias tim Tim O\'Malley <tim@timomalleydesign.com>
alias christina Christina Spach <cfreespach@gmail.com>
|