aboutsummaryrefslogblamecommitdiffstats
path: root/admin/www/mailman-admin.ps
blob: b8e527795efdce8ee7d9ac4c9f74dfdfcd67f93e (plain) (tree)
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





























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                            
%!PS-Adobe-2.0
%%Creator: dvips(k) 5.92b Copyright 2002 Radical Eye Software
%%Title: mailman-admin.dvi
%%Pages: 17
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 842
%%DocumentFonts: Helvetica Helvetica-Oblique Times-Roman Times-Bold
%%+ Times-Italic CMSY10 Courier
%%EndComments
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -N0 -o mailman-admin.ps mailman-admin
%DVIPSParameters: dpi=600, compressed
%DVIPSSource:  TeX output 2004.10.02:1901
%%BeginProcSet: texc.pro
%!
/TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
N}B/A{dup}B/TR{translate}N/isls false N/vsize 11 72 mul N/hsize 8.5 72
mul N/landplus90{false}def/@rigin{isls{[0 landplus90{1 -1}{-1 1}ifelse 0
0 0]concat}if 72 Resolution div 72 VResolution div neg scale isls{
landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div hsize
mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul TR[
matrix currentmatrix{A A round sub abs 0.00001 lt{round}if}forall round
exch round exch]setmatrix}N/@landscape{/isls true N}B/@manualfeed{
statusdict/manualfeed true put}B/@copies{/#copies X}B/FMat[1 0 0 -1 0 0]
N/FBB[0 0 0 0]N/nn 0 N/IEn 0 N/ctr 0 N/df-tail{/nn 8 dict N nn begin
/FontType 3 N/FontMatrix fntrx N/FontBBox FBB N string/base X array
/BitMaps X/BuildChar{CharBuilder}N/Encoding IEn N end A{/foo setfont}2
array copy cvx N load 0 nn put/ctr 0 N[}B/sf 0 N/df{/sf 1 N/fntrx FMat N
df-tail}B/dfs{div/sf X/fntrx[sf 0 0 sf neg 0 0]N df-tail}B/E{pop nn A
definefont setfont}B/Cw{Cd A length 5 sub get}B/Ch{Cd A length 4 sub get
}B/Cx{128 Cd A length 3 sub get sub}B/Cy{Cd A length 2 sub get 127 sub}
B/Cdx{Cd A length 1 sub get}B/Ci{Cd A type/stringtype ne{ctr get/ctr ctr
1 add N}if}B/id 0 N/rw 0 N/rc 0 N/gp 0 N/cp 0 N/G 0 N/CharBuilder{save 3
1 roll S A/base get 2 index get S/BitMaps get S get/Cd X pop/ctr 0 N Cdx
0 Cx Cy Ch sub Cx Cw add Cy setcachedevice Cw Ch true[1 0 0 -1 -.1 Cx
sub Cy .1 sub]/id Ci N/rw Cw 7 add 8 idiv string N/rc 0 N/gp 0 N/cp 0 N{
rc 0 ne{rc 1 sub/rc X rw}{G}ifelse}imagemask restore}B/G{{id gp get/gp
gp 1 add N A 18 mod S 18 idiv pl S get exec}loop}B/adv{cp add/cp X}B
/chg{rw cp id gp 4 index getinterval putinterval A gp add/gp X adv}B/nd{
/cp 0 N rw exit}B/lsh{rw cp 2 copy get A 0 eq{pop 1}{A 255 eq{pop 254}{
A A add 255 and S 1 and or}ifelse}ifelse put 1 adv}B/rsh{rw cp 2 copy
get A 0 eq{pop 128}{A 255 eq{pop 127}{A 2 idiv S 128 and or}ifelse}
ifelse put 1 adv}B/clr{rw cp 2 index string putinterval adv}B/set{rw cp
fillstr 0 4 index getinterval putinterval adv}B/fillstr 18 string 0 1 17
{2 copy 255 put pop}for N/pl[{adv 1 chg}{adv 1 chg nd}{1 add chg}{1 add
chg nd}{adv lsh}{adv lsh nd}{adv rsh}{adv rsh nd}{1 add adv}{/rc X nd}{
1 add set}{1 add clr}{adv 2 chg}{adv 2 chg nd}{pop nd}]A{bind pop}
forall N/D{/cc X A type/stringtype ne{]}if nn/base get cc ctr put nn
/BitMaps get S ctr S sf 1 ne{A A length 1 sub A 2 index S get sf div put
}if put/ctr ctr 1 add N}B/I{cc 1 add D}B/bop{userdict/bop-hook known{
bop-hook}if/SI save N @rigin 0 0 moveto/V matrix currentmatrix A 1 get A
mul exch 0 get A mul add .99 lt{/QV}{/RV}ifelse load def pop pop}N/eop{
SI restore userdict/eop-hook known{eop-hook}if showpage}N/@start{
userdict/start-hook known{start-hook}if pop/VResolution X/Resolution X
1000 div/DVImag X/IEn 256 array N 2 string 0 1 255{IEn S A 360 add 36 4
index cvrs cvn put}for pop 65781.76 div/vsize X 65781.76 div/hsize X}N
/p{show}N/RMat[1 0 0 -1 0 0]N/BDot 260 string N/Rx 0 N/Ry 0 N/V{}B/RV/v{
/Ry X/Rx X V}B statusdict begin/product where{pop false[(Display)(NeXT)
(LaserWriter 16/600)]{A length product length le{A length product exch 0
exch getinterval eq{pop true exit}if}{pop}ifelse}forall}{false}ifelse
end{{gsave TR -.1 .1 TR 1 1 scale Rx Ry false RMat{BDot}imagemask
grestore}}{{gsave TR -.1 .1 TR Rx Ry scale 1 1 false RMat{BDot}
imagemask grestore}}ifelse B/QV{gsave newpath transform round exch round
exch itransform moveto Rx 0 rlineto 0 Ry neg rlineto Rx neg 0 rlineto
fill grestore}B/a{moveto}B/delta 0 N/tail{A/delta X 0 rmoveto}B/M{S p
delta add tail}B/b{S p tail}B/c{-4 M}B/d{-3 M}B/e{-2 M}B/f{-1 M}B/g{0 M}
B/h{1 M}B/i{2 M}B/j{3 M}B/k{4 M}B/w{0 rmoveto}B/l{p -4 w}B/m{p -3 w}B/n{
p -2 w}B/o{p -1 w}B/q{p 1 w}B/r{p 2 w}B/s{p 3 w}B/t{p 4 w}B/x{0 S
rmoveto}B/y{3 2 roll p a}B/bos{/SS save N}B/eos{SS restore}B end

%%EndProcSet
%%BeginProcSet: 8r.enc
% File  8r.enc as of 2002-03-12 for PSNFSS 9
%
% This is the encoding vector for Type1 and TrueType fonts to be used
% with TeX.  This file is part of the PSNFSS bundle, version 9
% 
% Authors: S. Rahtz, P. MacKay, Alan Jeffrey, B. Horn, K. Berry, W. Schmidt
%
% Idea is to have all the characters normally included in Type 1 fonts
% available for typesetting. This is effectively the characters in Adobe
% Standard Encoding + ISO Latin 1 + extra characters from Lucida + Euro.
% 
% Character code assignments were made as follows:
% 
% (1) the Windows ANSI characters are almost all in their Windows ANSI
% positions, because some Windows users cannot easily reencode the
% fonts, and it makes no difference on other systems. The only Windows
% ANSI characters not available are those that make no sense for
% typesetting -- rubout (127 decimal), nobreakspace (160), softhyphen
% (173). quotesingle and grave are moved just because it's such an
% irritation not having them in TeX positions.
% 
% (2) Remaining characters are assigned arbitrarily to the lower part
% of the range, avoiding 0, 10 and 13 in case we meet dumb software.
% 
% (3) Y&Y Lucida Bright includes some extra text characters; in the
% hopes that other PostScript fonts, perhaps created for public
% consumption, will include them, they are included starting at 0x12.
% 
% (4) Remaining positions left undefined are for use in (hopefully)
% upward-compatible revisions, if someday more characters are generally
% available.
% 
% (5) hyphen appears twice for compatibility with both ASCII and Windows.
%
% (6) /Euro is assigned to 128, as in Windows ANSI
% 
/TeXBase1Encoding [
% 0x00 (encoded characters from Adobe Standard not in Windows 3.1)
  /.notdef /dotaccent /fi /fl
  /fraction /hungarumlaut /Lslash /lslash
  /ogonek /ring /.notdef
  /breve /minus /.notdef 
% These are the only two remaining unencoded characters, so may as
% well include them.
  /Zcaron /zcaron 
% 0x10
 /caron /dotlessi 
% (unusual TeX characters available in, e.g., Lucida Bright)
 /dotlessj /ff /ffi /ffl 
 /.notdef /.notdef /.notdef /.notdef
 /.notdef /.notdef /.notdef /.notdef
 % very contentious; it's so painful not having quoteleft and quoteright
 % at 96 and 145 that we move the things normally found there down to here.
 /grave /quotesingle 
% 0x20 (ASCII begins)
 /space /exclam /quotedbl /numbersign
 /dollar /percent /ampersand /quoteright
 /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
% 0x30
 /zero /one /two /three /four /five /six /seven
 /eight /nine /colon /semicolon /less /equal /greater /question
% 0x40
 /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O
% 0x50
 /P /Q /R /S /T /U /V /W
 /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
% 0x60
 /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o
% 0x70
 /p /q /r /s /t /u /v /w
 /x /y /z /braceleft /bar /braceright /asciitilde
 /.notdef % rubout; ASCII ends
% 0x80
 /Euro /.notdef /quotesinglbase /florin
 /quotedblbase /ellipsis /dagger /daggerdbl
 /circumflex /perthousand /Scaron /guilsinglleft
 /OE /.notdef /.notdef /.notdef
% 0x90
 /.notdef /.notdef /.notdef /quotedblleft
 /quotedblright /bullet /endash /emdash
 /tilde /trademark /scaron /guilsinglright
 /oe /.notdef /.notdef /Ydieresis
% 0xA0
 /.notdef % nobreakspace
 /exclamdown /cent /sterling
 /currency /yen /brokenbar /section
 /dieresis /copyright /ordfeminine /guillemotleft
 /logicalnot
 /hyphen % Y&Y (also at 45); Windows' softhyphen
 /registered
 /macron
% 0xD0
 /degree /plusminus /twosuperior /threesuperior
 /acute /mu /paragraph /periodcentered
 /cedilla /onesuperior /ordmasculine /guillemotright
 /onequarter /onehalf /threequarters /questiondown
% 0xC0
 /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
 /Egrave /Eacute /Ecircumflex /Edieresis
 /Igrave /Iacute /Icircumflex /Idieresis
% 0xD0
 /Eth /Ntilde /Ograve /Oacute
 /Ocircumflex /Otilde /Odieresis /multiply
 /Oslash /Ugrave /Uacute /Ucircumflex
 /Udieresis /Yacute /Thorn /germandbls
% 0xE0
 /agrave /aacute /acircumflex /atilde
 /adieresis /aring /ae /ccedilla
 /egrave /eacute /ecircumflex /edieresis
 /igrave /iacute /icircumflex /idieresis
% 0xF0
 /eth /ntilde /ograve /oacute
 /ocircumflex /otilde /odieresis /divide
 /oslash /ugrave /uacute /ucircumflex
 /udieresis /yacute /thorn /ydieresis
] def

%%EndProcSet
%%BeginProcSet: bbad153f.enc
% Thomas Esser, Dec 2002. public domain
%
% Encoding for:
%     cmsy10 cmsy5 cmsy6 cmsy7 cmsy8 cmsy9
%
/TeXbbad153fEncoding [
/minus /periodcentered /multiply /asteriskmath /divide /diamondmath
/plusminus /minusplus /circleplus /circleminus /circlemultiply
/circledivide /circledot /circlecopyrt /openbullet /bullet
/equivasymptotic /equivalence /reflexsubset /reflexsuperset /lessequal
/greaterequal /precedesequal /followsequal /similar /approxequal
/propersubset /propersuperset /lessmuch /greatermuch /precedes /follows
/arrowleft /arrowright /arrowup /arrowdown /arrowboth /arrownortheast
/arrowsoutheast /similarequal /arrowdblleft /arrowdblright /arrowdblup
/arrowdbldown /arrowdblboth /arrownorthwest /arrowsouthwest /proportional
/prime /infinity /element /owner /triangle /triangleinv /negationslash
/mapsto /universal /existential /logicalnot /emptyset /Rfractur /Ifractur
/latticetop /perpendicular /aleph /A /B /C /D /E /F /G /H /I /J /K
/L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /union /intersection
/unionmulti /logicaland /logicalor /turnstileleft /turnstileright
/floorleft /floorright /ceilingleft /ceilingright /braceleft /braceright
/angbracketleft /angbracketright /bar /bardbl /arrowbothv /arrowdblbothv
/backslash /wreathproduct /radical /coproduct /nabla /integral
/unionsq /intersectionsq /subsetsqequal /supersetsqequal /section
/dagger /daggerdbl /paragraph /club /diamond /heart /spade /arrowleft
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/minus /periodcentered /multiply /asteriskmath /divide /diamondmath
/plusminus /minusplus /circleplus /circleminus /.notdef /.notdef
/circlemultiply /circledivide /circledot /circlecopyrt /openbullet
/bullet /equivasymptotic /equivalence /reflexsubset /reflexsuperset
/lessequal /greaterequal /precedesequal /followsequal /similar
/approxequal /propersubset /propersuperset /lessmuch /greatermuch
/precedes /follows /arrowleft /spade /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
] def

%%EndProcSet
%%BeginProcSet: texps.pro
%!
TeXDict begin/rf{findfont dup length 1 add dict begin{1 index/FID ne 2
index/UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll
exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]FontType 0
ne{/Metrics exch def dict begin Encoding{exch dup type/integertype ne{
pop pop 1 sub dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get
div def}ifelse}forall Metrics/Metrics currentdict end def}{{1 index type
/nametype eq{exit}if exch pop}loop}ifelse[2 index currentdict end
definefont 3 -1 roll makefont/setfont cvx]cvx def}def/ObliqueSlant{dup
sin S cos div neg}B/SlantFont{4 index mul add}def/ExtendFont{3 -1 roll
mul exch}def/ReEncodeFont{CharStrings rcheck{/Encoding false def dup[
exch{dup CharStrings exch known not{pop/.notdef/Encoding true def}if}
forall Encoding{]exch pop}{cleartomark}ifelse}if/Encoding exch def}def
end

%%EndProcSet
%%BeginFont: CMSY10
%!PS-AdobeFont-1.1: CMSY10 1.0
%%CreationDate: 1991 Aug 15 07:20:57
% Copyright (C) 1997 American Mathematical Society. All Rights Reserved.
11 dict begin
/FontInfo 7 dict dup begin
/version (1.0) readonly def
/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def
/FullName (CMSY10) readonly def
/FamilyName (Computer Modern) readonly def
/Weight (Medium) readonly def
/ItalicAngle -14.035 def
/isFixedPitch false def
end readonly def
/FontName /CMSY10 def
/PaintType 0 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] readonly def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 0 /.notdef put
readonly def
/FontBBox{-29 -960 1116 775}readonly def
/UniqueID 5000820 def
currentdict end
currentfile eexec
D9D66F633B846A97B686A97E45A3D0AA052F09F9C8ADE9D907C058B87E9B6964
7D53359E51216774A4EAA1E2B58EC3176BD1184A633B951372B4198D4E8C5EF4
A213ACB58AA0A658908035BF2ED8531779838A960DFE2B27EA49C37156989C85
E21B3ABF72E39A89232CD9F4237FC80C9E64E8425AA3BEF7DED60B122A52922A
221A37D9A807DD01161779DDE7D31FF2B87F97C73D63EECDDA4C49501773468A
27D1663E0B62F461F6E40A5D6676D1D12B51E641C1D4E8E2771864FC104F8CBF
5B78EC1D88228725F1C453A678F58A7E1B7BD7CA700717D288EB8DA1F57C4F09
0ABF1D42C5DDD0C384C7E22F8F8047BE1D4C1CC8E33368FB1AC82B4E96146730
DE3302B2E6B819CB6AE455B1AF3187FFE8071AA57EF8A6616B9CB7941D44EC7A
71A7BB3DF755178D7D2E4BB69859EFA4BBC30BD6BB1531133FD4D9438FF99F09
4ECC068A324D75B5F696B8688EEB2F17E5ED34CCD6D047A4E3806D000C199D7C
515DB70A8D4F6146FE068DC1E5DE8BC5703711DA090312BA3FC00A08C453C609
C627A8BECD6E1FA14A3B02476E90AAD8B4700C400380BC9AFFBF7847EB28661B
9DC3AA0F44C533F2E07DCC4DE19D367BF223E33DC321D0247A0E6EF6ABC8FA52
15AE044094EF678A8726CD7C011F02BFF8AB6EAEEE391AD837120823BED0B5D8
F8B15245377871A64F78378BB4330149D6941F7A86FBFFC49B93C94155F5FA7D
F22E7214511C0A92693F4CDBF38411651540572F2DD70D924AE0F18E1CD581F3
C871399127FF5D07A868885B5FF7CDEB50B8323B2533DEF8DC973B1AE84FA0A2

0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%%EndFont 
TeXDict begin 39158280 55380996 1000 600 600 (mailman-admin.dvi)
@start /Fa 130[40 1[40 4[40 40 40 40 40 2[40 40 40 40
2[40 3[40 40 2[40 60[40 36[{ TeXBase1Encoding ReEncodeFont }16
66.4176 /Courier rf /Fb 130[45 1[45 1[45 45 2[45 45 45
45 1[45 45 45 45 45 1[45 45 45 45 45 45 45 45 45 45 1[45
1[45 45 45 2[45 45 2[45 45 2[45 45 1[45 45 1[45 1[45
2[45 45 2[45 6[45 4[45 1[45 4[45 45 45 1[45 45 45 45
1[45 37[{ TeXBase1Encoding ReEncodeFont }51 74.7198 /Courier
rf /Fc 134[33 1[48 33 33 18 26 22 33 33 33 33 52 18 33
1[18 33 33 22 29 33 29 33 29 9[63 1[48 41 37 2[37 2[59
6[37 4[48 18[17 22 17 4[22 36[37 2[{ TeXBase1Encoding ReEncodeFont }36
66.4176 /Times-Roman rf /Fd 202[25 25 25 25 25 49[{
 TeXBase1Encoding ReEncodeFont }5 49.8132 /Times-Roman
rf /Fe 202[29 29 29 29 29 49[{ TeXBase1Encoding ReEncodeFont }5
58.1154 /Times-Roman rf /Ff 133[50 50 50 50 50 50 50
50 50 50 50 50 50 50 50 1[50 50 50 50 50 50 50 50 50
50 3[50 1[50 10[50 1[50 50 50 11[50 5[50 10[50 50 50
2[50 50 50 2[50 37[{ TeXBase1Encoding ReEncodeFont }40
83.022 /Courier rf /Fg 134[42 1[60 42 46 23 42 28 1[46
46 46 69 18 2[18 46 46 1[46 46 42 46 46 11[60 51 55 60
1[55 65 60 69 46 2[23 1[65 51 1[60 60 55 55 7[46 46 46
46 46 46 46 46 46 46 23 23 28 42[42 2[{ TeXBase1Encoding ReEncodeFont }
50 83.022 /Helvetica rf /Fh 134[37 2[37 42 21 37 25 1[42
42 42 62 17 37 17 17 42 42 1[42 42 37 42 42 8[50 2[54
46 50 54 1[50 1[54 62 42 2[21 2[46 1[54 54 50 50 6[21
10[21 21 25 45[{ TeXBase1Encoding ReEncodeFont }40 74.7198
/Helvetica rf /Fi 240[42 15[{ TeXbbad153fEncoding ReEncodeFont }1
83.022 /CMSY10 rf /Fj 133[32 37 37 55 37 42 23 32 32
42 42 42 42 60 23 37 23 23 42 42 23 37 42 37 42 42 7[46
1[69 2[46 1[51 1[51 1[55 69 4[60 60 51 51 60 55 1[51
76 17[21 28 3[28 28 28 35[42 3[{ TeXBase1Encoding ReEncodeFont }47
83.022 /Times-Italic rf /Fk 134[50 1[72 50 55 28 50 33
1[55 55 55 83 22 2[22 55 55 1[55 55 50 55 55 9[94 2[61
1[72 1[66 78 72 83 55 4[78 61 66 72 72 66 66 7[55 55
55 55 55 55 55 55 55 55 28 28 33 5[22 39[{
 TeXBase1Encoding ReEncodeFont }49 99.6264 /Helvetica
rf /Fl 133[37 42 42 60 42 46 28 32 37 46 46 42 46 69
23 1[28 23 46 42 28 37 46 37 46 42 9[83 1[60 55 1[60
1[51 1[60 78 55 2[32 65 65 1[55 60 60 1[60 1[42 4[28
42 1[42 42 42 42 42 42 42 46[46 2[{ TeXBase1Encoding ReEncodeFont }51
83.022 /Times-Bold rf /Fm 136[54 37 37 21 29 25 1[37
37 37 58 21 2[21 37 37 25 33 37 33 37 33 11[54 46 5[54
66 3[25 1[54 20[37 37 2[19 1[19 4[25 36[42 2[{
 TeXBase1Encoding ReEncodeFont }32 74.7198 /Times-Roman
rf /Fn 139[25 29 33 14[33 42 37 31[54 65[{
 TeXBase1Encoding ReEncodeFont }7 74.7198 /Times-Bold
rf /Fo 105[42 1[37 37 10[28 13[37 42 42 60 42 42 23 32
28 42 42 42 42 65 23 42 23 23 42 42 28 37 42 37 42 37
28 6[60 1[78 60 60 51 46 55 1[46 60 60 74 51 1[32 28
60 60 46 51 60 55 55 60 76 4[23 23 42 42 42 42 42 42
42 42 42 42 23 21 28 21 2[28 28 28 3[42 1[28 29[46 46
2[{ TeXBase1Encoding ReEncodeFont }77 83.022 /Times-Roman
rf /Fp 134[60 60 86 1[66 33 60 40 66 66 66 66 100 27
2[27 66 66 1[66 66 60 66 66 9[113 1[86 73 1[86 1[80 93
86 100 66 2[33 86 93 1[80 86 86 80 80 6[33 2[66 66 66
66 66 66 66 2[33 1[33 41[60 2[{ TeXBase1Encoding ReEncodeFont }49
119.552 /Helvetica rf /Fq 140[50 6[22 6[55 3[55 14[72
31[55 55 2[28 46[{ TeXBase1Encoding ReEncodeFont }8 99.6264
/Helvetica-Oblique rf /Fr 138[115 57 103 69 2[115 115
172 46 2[46 4[115 2[115 11[149 6[149 172 115 4[161 5[138
19[69 45[{ TeXBase1Encoding ReEncodeFont }18 206.559
/Helvetica rf end
%%EndProlog
%%BeginSetup
%%Feature: *Resolution 600dpi
TeXDict begin
%%PaperSize: A4
 end
%%EndSetup
%%Page: 1 1
TeXDict begin 1 0 bop 0 83 3901 9 v 2 351 a Fr(GNU)57
b(Mailman)g(-)g(List)h(Administr)n(ation)f(Man)n(ual)3368
498 y Fq(Release)30 b(2.1)2455 852 y Fp(Barr)t(y)j(A.)g(W)-5
b(arsa)n(w)e(,)34 b(T)-14 b(err)r(i)32 b(Oda)3363 1207
y Fo(October)19 b(2,)h(2004)3201 1354 y(terri)h(\(at\))f(zone12.com)
1811 1568 y Fn(Abstract)208 1714 y Fm(This)e(document)i(describes)f
(the)g(list)f(administrator')l(s)h(interf)o(ace)g(for)g(GNU)f(Mailman)h
(2.1.)k(It)18 b(contains)i(information)f(a)g(list)f(o)n(wner)208
1806 y(w)o(ould)k(need)h(to)f(con\002gure)h(their)f(list,)g(either)g
(through)h(the)f(web)h(interf)o(ace)f(or)g(through)i(email.)32
b(It)21 b(also)i(co)o(v)o(ers)f(the)h(moderator')l(s)208
1897 y(interf)o(ace)d(for)g(appro)o(ving)i(held)e(messages)i(and)e
(subscription)i(notices,)e(and)h(the)f(web)g(interf)o(ace)h(for)f
(creating)h(ne)n(w)f(mailing)g(lists.)208 1988 y(In)d(general,)h(it)e
(does)i(not)g(co)o(v)o(er)f(the)h(command)g(line)f(interf)o(ace)h(to)f
(Mailman,)h(installing)f(Mailman,)h(or)f(interacting)h(with)f(Mailman)
208 2080 y(from)h(the)h(point)h(of)f(vie)n(w)g(of)g(the)g(user)l(.)k
(That)c(information)g(is)g(co)o(v)o(ered)g(in)g(other)h(manuals.)0
2358 y Fp(Contents)0 2544 y Fl(1)83 b(W)-10 b(ARNING:)20
b(This)h(is)g(incomplete)2634 b(2)0 2727 y(2)83 b(Intr)o(oduction)19
b(to)h(GNU)g(Mailman)2644 b(2)125 2826 y Fo(2.1)85 b(A)21
b(List')-5 b(s)21 b(Email)g(Addresses)41 b(.)g(.)g(.)h(.)f(.)g(.)g(.)h
(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)
g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143
b(2)125 2926 y(2.2)85 b(Administrati)n(v)o(e)19 b(Roles)59
b(.)42 b(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)
f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g
(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143 b(3)125 3026 y(2.3)85
b(A)21 b(List')-5 b(s)21 b(W)-7 b(eb)21 b(P)o(ages)52
b(.)41 b(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)
h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f
(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143 b(3)125 3125
y(2.4)85 b(Basic)22 b(Architectural)c(Ov)o(ervie)n(w)23
b(.)42 b(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)g(.)143 b(4)0 3308 y Fl(3)83 b(The)21
b(List)g(Con\002guration)e(P)o(ages)2693 b(4)125 3407
y Fo(3.1)85 b(The)20 b(General)g(Options)g(Cate)o(gory)53
b(.)41 b(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)
g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h
(.)f(.)g(.)g(.)143 b(5)315 3507 y(General)20 b(list)h(personality)50
b(.)41 b(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)
g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h
(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143 b(5)315 3607 y(Reply-T)-7
b(o)20 b(header)f(munging)78 b(.)41 b(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)
g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143
b(6)315 3706 y(Umbrella)20 b(list)h(settings)53 b(.)42
b(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g
(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)
f(.)g(.)g(.)h(.)f(.)g(.)g(.)143 b(7)315 3806 y(Noti\002cations)23
b(.)41 b(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)
g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f
(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143
b(7)315 3906 y(Additional)19 b(settings)72 b(.)41 b(.)h(.)f(.)g(.)g(.)h
(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)
g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f
(.)g(.)g(.)143 b(7)125 4005 y(3.2)85 b(The)20 b(P)o(assw)o(ords)h(Cate)
o(gory)64 b(.)41 b(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h
(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)
g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143 b(8)125 4105
y(3.3)85 b(The)20 b(Language)e(Options)i(Cate)o(gory)51
b(.)41 b(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)
g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f
(.)g(.)g(.)143 b(9)125 4204 y(3.4)85 b(The)20 b(Membership)f
(Management)f(Cate)o(gory)37 b(.)k(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h
(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)
g(.)h(.)f(.)g(.)g(.)143 b(9)125 4304 y(3.5)85 b(The)20
b(Non-digest)f(Options)h(Cate)o(gory)71 b(.)41 b(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143 b(9)125
4404 y(3.6)85 b(The)20 b(Digest)h(Options)f(Cate)o(gory)36
b(.)42 b(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)g(.)102 b(11)125 4503 y(3.7)85 b(The)20
b(Pri)n(v)n(ac)o(y)f(Options)h(Cate)o(gory)68 b(.)41
b(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)
g(.)g(.)102 b(12)315 4603 y(Subscription)19 b(rules)37
b(.)k(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g
(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102 b(13)315
4703 y(Sender)20 b(\002lters)74 b(.)41 b(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)
h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g
(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)g(.)102 b(14)315 4802 y(Recipient)20 b(Filters)26
b(.)42 b(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102 b(15)315
4902 y(Spam)20 b(Filters)31 b(.)41 b(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)
h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g
(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)g(.)102 b(15)125 5001 y(3.8)85 b(The)20 b(Bounce)g(Processing)f
(Cate)o(gory)28 b(.)41 b(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)
g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f
(.)g(.)g(.)h(.)f(.)g(.)g(.)102 b(15)125 5101 y(3.9)85
b(The)20 b(Archi)n(ving)f(Options)g(Cate)o(gory)44 b(.)d(.)g(.)h(.)f(.)
g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h
(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102
b(16)125 5201 y(3.10)43 b(The)20 b(Mail/Ne)n(ws)h(Gate)n(w)o(ay)f(Cate)
o(gory)44 b(.)d(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g
(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)g(.)102 b(17)125 5300 y(3.11)43 b(The)20 b(Auto-responder)d
(Cate)o(gory)79 b(.)41 b(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)
g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h
(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102 b(17)125 5400 y(3.12)43
b(The)20 b(Content)g(Filtering)g(Cate)o(gory)30 b(.)41
b(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)
g(.)g(.)102 b(17)p eop end
%%Page: 2 2
TeXDict begin 2 1 bop 125 83 a Fo(3.13)43 b(The)20 b(T)-7
b(opics)20 b(Cate)o(gory)69 b(.)42 b(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)
f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102
b(17)0 266 y Fl(4)83 b(Membership)21 b(Management)2753
b(17)0 448 y(5)83 b(T)-8 b(ending)21 b(to)f(P)n(ending)h(Moderator)e
(Requests)2258 b(17)0 631 y(6)83 b(Editing)20 b(the)h(Public)g(HTML)g
(P)o(ages)2553 b(17)0 814 y(7)83 b(Deleting)19 b(the)i(Mailing)f(List)
2810 b(17)0 996 y(A)65 b(This)21 b(is)g(an)g(A)n(ppendix)2986
b(17)p 0 1143 3901 9 v 0 1570 a Fp(1)120 b(W)-6 b(ARNING:)34
b(This)f(is)g(incomplete)0 1803 y Fo(W)-7 b(arning:)45
b(This)30 b(documentation)e(is)j(not)f(yet)g(complete.)54
b(It)31 b(is)g(kno)n(wn)e(to)h(be)g(missing)g(sections)h(and)e(hasn')o
(t)h(been)f(proofread)0 1903 y(completely)21 b(yet.)33
b(Ho)n(we)n(v)o(er)m(,)22 b(I'm)g(putting)g(it)i(online)e(an)o(yho)n(w)
f(because)h(some)g(questions)h(ha)n(v)o(e)f(come)g(up)h(on)f(the)h
(lists)h(which)f(are)0 2002 y(answered)c(in)i(here.)0
2330 y Fp(2)120 b(Introduction)36 b(to)e(GNU)g(Mailman)0
2562 y Fo(GNU)20 b(Mailman)f(is)h(softw)o(are)f(that)h(lets)g(you)f
(manage)f(electronic)g(mailing)h(lists.)26 b(It)20 b(supports)f(a)g
(wide)h(range)e(of)i(mailing)e(list)j(types,)0 2662 y(such)k(as)g
(general)f(discussion)h(lists)h(and)f(announce-only)c(lists.)41
b(Mailman)24 b(has)h(e)o(xtensi)n(v)o(e)f(features)g(for)g(controlling)
f(the)i(pri)n(v)n(ac)o(y)0 2762 y(of)f(your)g(lists,)i(distrib)n(uting)
e(your)f(list)i(as)h(personalized)c(postings)i(or)h(digests,)g(gate)n
(w)o(aying)e(postings)g(to)i(and)f(from)g(Usenet,)h(and)0
2861 y(pro)o(viding)e(automatic)j(bounce)e(detection.)42
b(Mailman)25 b(pro)o(vides)g(a)h(b)n(uilt-in)g(archi)n(v)o(er)m(,)f
(multiple)h(natural)f(languages,)h(as)h(well)g(as)0 2961
y(adv)n(anced)18 b(content)h(and)h(topic)g(\002ltering.)0
3108 y(Mailman)i(pro)o(vides)e(se)n(v)o(eral)i(interf)o(aces)g(to)g
(its)i(functionality)-5 b(.)29 b(Most)23 b(list)g(administrators)e
(will)i(primarily)e(use)i(the)f(web)g(interf)o(ace)0
3207 y(to)h(customize)f(their)g(lists.)33 b(There)22
b(is)i(also)e(a)h(limited)g(email)f(command)f(interf)o(ace)h(to)g(the)h
(administrati)n(v)o(e)e(functions,)g(as)j(well)f(as)g(a)0
3307 y(command)d(line)i(interf)o(ace)f(if)h(you)g(ha)n(v)o(e)f(shell)h
(access)h(on)e(the)h(Mailman)g(serv)o(er)-5 b(.)30 b(This)22
b(document)e(does)h(not)h(co)o(v)o(er)f(the)h(command)0
3407 y(line)e(interf)o(ace;)g(see)g(the)h(GNU)f(Mailman)g(site)h
(administrator')-5 b(s)19 b(manual)g(for)g(more)h(details.)0
3692 y Fk(2.1)100 b(A)28 b(List')-5 b(s)28 b(Email)h(Addresses)0
3895 y Fo(Ev)o(ery)22 b(mailing)h(list)i(has)f(a)g(set)h(of)e(email)h
(addresses)f(that)h(messages)g(can)f(be)h(sent)g(to.)36
b(There')-5 b(s)23 b(al)o(w)o(ays)h(one)f(address)g(for)h(posting)0
3994 y(messages)k(to)g(the)g(list,)j(one)c(address)h(that)g(bounces)e
(will)j(be)f(sent)g(to,)i(and)d(addresses)h(for)f(processing)g(email)h
(commands.)46 b(F)o(or)0 4094 y(e)o(xample,)19 b(for)g(a)i(mailing)e
(list)i(called)f Fj(mylist@e)n(xample)o(.com)p Fo(,)f(you')l(d)g
(\002nd)h(these)g(addresses:)125 4324 y Fi(\017)41 b
Fo(mylist@e)o(xample.com)17 b(\226)j(this)h(is)g(the)f(email)h(address)
e(people)h(should)f(use)h(for)g(ne)n(w)g(postings)f(to)i(the)f(list.)
125 4490 y Fi(\017)41 b Fo(mylist-join@e)o(xample.com)34
b(\226)k(by)g(sending)f(a)i(message)f(to)h(this)f(address,)k(a)d(ne)n
(w)f(member)f(can)h(request)g(subscrip-)208 4589 y(tion)f(to)h(the)h
(list.)79 b(Both)38 b(the)g Fh(Subject:)59 b Fo(header)37
b(and)h(body)e(of)i(such)g(a)g(message)g(are)g(ignored.)77
b(Note)38 b(that)g(mylist-)208 4689 y(subscribe@e)o(xample.com)16
b(is)21 b(an)f(alias)h(for)f(the)g(-join)g(address.)125
4855 y Fi(\017)41 b Fo(mylist-lea)n(v)o(e@e)o(xample.com)16
b(\226)21 b(by)f(sending)f(a)i(message)g(to)f(this)h(address,)f(a)h
(member)e(can)i(request)f(unsubscription)e(from)208 4955
y(the)24 b(list.)40 b(As)25 b(with)g(the)g(-join)f(address,)h(the)g
Fh(Subject:)33 b Fo(header)23 b(and)i(body)e(of)h(the)h(message)g(is)g
(ignored.)37 b(Note)25 b(that)g(mylist-)208 5054 y(unsubscribe@e)o
(xample.com)15 b(is)21 b(an)f(alias)h(for)f(the)g(-lea)n(v)o(e)g
(address.)125 5220 y Fi(\017)41 b Fo(mylist-o)n(wner@e)o(xample.com)15
b(\226)20 b(This)h(address)f(reaches)f(the)h(list)i(o)n(wner)d(and)h
(list)h(moderators)d(directly)-5 b(.)p 0 5549 3901 4
v 0 5649 a Fg(2)2654 b(2)84 b(Introduction)23 b(to)h(GNU)e(Mailman)p
eop end
%%Page: 3 3
TeXDict begin 3 2 bop 125 83 a Fi(\017)41 b Fo(mylist-request@e)o
(xample.com)14 b(\226)k(This)h(address)f(reaches)g(a)h(mail)g(robot)e
(which)h(processes)g(email)h(commands)e(that)h(can)h(be)208
183 y(used)g(to)i(set)g(member)e(subscription)f(options,)h(as)i(well)g
(as)g(process)f(other)f(commands.)125 349 y Fi(\017)41
b Fo(mylist-bounces@e)o(xample.com)21 b(\226)26 b(This)g(address)f
(recei)n(v)o(es)h(bounces)e(from)h(members)g(who')-5
b(s)26 b(addresses)f(ha)n(v)o(e)h(become)208 448 y(either)f
(temporarily)f(or)h(permanently)e(inacti)n(v)o(e.)41
b(The)25 b(-bounces)f(address)h(is)i(also)f(a)g(mail)g(robot)f(that)h
(processes)f(bounces)208 548 y(and)e(automatically)g(disables)h(or)g
(remo)o(v)o(es)f(members)g(as)i(con\002gured)d(in)i(the)g(bounce)f
(processing)g(settings.)37 b(An)o(y)23 b(bounce)208 648
y(messages)i(that)g(are)g(either)g(unrecognized,)d(or)j(do)g(not)f
(seem)i(to)f(contain)f(member)g(addresses,)h(are)g(forw)o(arded)e(to)i
(the)g(list)208 747 y(administrators.)125 913 y Fi(\017)41
b Fo(mylist-con\002rm@e)o(xample.com)21 b(\226)27 b(This)f(address)g
(is)h(another)e(email)h(robot,)h(which)e(processes)h(con\002rmation)e
(messages)208 1013 y(for)19 b(subscription)g(and)g(unsubscription)f
(requests.)0 1243 y(There')-5 b(s)18 b(also)h(an)f(-admin)f(address)h
(which)g(also)g(reaches)g(the)g(list)i(administrators,)d(b)n(ut)h(this)
h(address)f(only)g(e)o(xists)g(for)g(compatibility)0
1342 y(with)i(older)g(v)o(ersions)f(of)h(Mailman.)0 1627
y Fk(2.2)100 b(Administr)o(ativ)n(e)29 b(Roles)0 1830
y Fo(There)d(are)i(tw)o(o)f(primary)f(administrati)n(v)o(e)g(roles)h
(for)g(each)g(mailing)f(list,)k(a)e(list)g(o)n(wner)f(and)f(a)i(list)h
(moderator)-5 b(.)44 b(A)28 b(list)g(o)n(wner)f(is)0
1930 y(allo)n(wed)20 b(to)i(change)d(v)n(arious)h(settings)i(of)f(the)g
(list,)h(such)f(as)h(the)f(pri)n(v)n(ac)o(y)e(and)i(archi)n(ving)e
(policies,)i(the)g(content)f(\002ltering)h(settings,)0
2029 y(etc.)34 b(The)23 b(list)h(o)n(wner)e(is)i(also)g(allo)n(wed)e
(to)i(subscribe)e(or)h(in)m(vite)f(members,)h(unsubscribe)e(members,)i
(and)f(change)g(an)o(y)h(member')-5 b(s)0 2129 y(subscription)19
b(options.)0 2276 y(The)i(list)h(moderator)d(on)h(the)i(other)e(hand,)g
(is)i(only)e(allo)n(wed)g(to)i(appro)o(v)o(e)c(or)j(reject)g(postings)f
(and)h(subscription)f(requests.)27 b(The)20 b(list)0
2376 y(moderator)14 b(can)i(also)g(do)f(things)h(lik)o(e)g(clear)g(a)g
(member')-5 b(s)15 b(moderation)f(\003ag,)j(or)f(add)f(an)h(address)f
(to)i(a)f(list)h(of)f(appro)o(v)o(ed)d(non-member)0 2475
y(posters.)0 2622 y(Normally)-5 b(,)17 b(the)h(list)i(o)n(wner)d(and)h
(list)h(moderator)d(are)j(the)f(same)h(person.)k(In)18
b(f)o(act,)g(the)h(list)g(o)n(wner)f(can)g(al)o(w)o(ays)h(do)e(all)i
(the)g(tasks)g(a)f(list)0 2722 y(moderator)d(can)i(do.)23
b(Access)18 b(to)f(both)f(the)h(o)n(wner')-5 b(s)16 b(con\002guration)f
(pages,)i(and)f(the)h(moderation)e(pages)h(are)h(protected)f(by)g(the)h
(same)0 2821 y(passw)o(ord.)29 b(Ho)n(we)n(v)o(er)m(,)20
b(if)i(the)f(list)i(o)n(wner)e(w)o(ants)h(to)g(dele)o(gate)e(posting)h
(and)g(subscription)f(appro)o(v)n(al)g(authority)g(to)i(other)e
(people,)h(a)0 2921 y(separate)f(list)h(moderator)d(passw)o(ord)h(can)h
(be)g(set,)h(gi)n(ving)e(moderators)f(access)j(to)f(the)h(appro)o(v)n
(al)d(pages,)h(b)n(ut)h(not)g(the)g(con\002guration)0
3021 y(pages.)25 b(In)19 b(this)i(setup,)f(list)h(o)n(wners)f(can)g
(still)h(moderate)e(the)h(list,)h(of)f(course.)0 3167
y(In)26 b(the)g(sections)g(that)h(follo)n(w)-5 b(,)26
b(we')o(ll)g(often)g(use)g(the)g(terms)g(list)i(o)n(wner)d(and)g(list)j
(administrator)c(interchangably)-5 b(,)24 b(meaning)g(both)0
3267 y(roles.)h(When)20 b(necessary)-5 b(,)19 b(we')o(ll)h(distinguish)
f(the)i(list)g(moderator)d(e)o(xplicitly)-5 b(.)0 3552
y Fk(2.3)100 b(A)28 b(List')-5 b(s)28 b(W)m(eb)g(P)l(ages)0
3755 y Fo(Ev)o(ery)j(mailing)h(list)h(is)h(also)f(accessible)f(by)g(a)h
(number)e(of)h(web)g(pages.)62 b(Note)32 b(that)h(the)f(e)o(xact)g
(urls)h(is)g(con\002gurable)d(by)j(the)0 3854 y(site)28
b(administrator)m(,)f(so)h(the)o(y)f(may)g(be)g(dif)n(ferent)f(than)h
(what')-5 b(s)27 b(described)f(belo)n(w)-5 b(.)46 b(W)-7
b(e')o(ll)28 b(describe)f(the)g(most)h(common)d(def)o(ault)0
3954 y(con\002guration,)17 b(b)n(ut)j(check)g(with)g(your)f(site)i
(administrator)e(or)h(hosting)f(service)h(for)f(details.)0
4101 y(Mailman)g(pro)o(vides)f(a)i(set)h(of)e(web)h(pages)f(that)h
(list)g(members)f(use)h(to)g(get)f(information)f(about)g(the)i(list,)h
(or)e(manage)g(their)g(member)n(-)0 4201 y(ship)j(options.)28
b(There)21 b(are)h(also)g(list)h(archi)n(v)o(e)d(pages,)i(for)f(bro)n
(wsing)f(an)i(online)f(web-based)f(archi)n(v)o(e)h(of)g(the)h(list)h
(traf)n(\002c.)29 b(These)22 b(are)0 4300 y(described)d(in)h(more)g
(detail)g(in)g(the)g(GNU)h(Mailman)f(user')-5 b(s)20
b(manual.)0 4447 y(Mailman)c(also)h(pro)o(vides)e(a)i(set)h(of)f(pages)
f(for)g(con\002guring)e(an)j(indi)n(vidual)e(list,)j(as)g(well)f(as)h
(a)f(set)g(of)g(pages)f(for)g(disposing)g(of)h(posting)0
4547 y(and)j(subscription)e(requests.)0 4694 y(F)o(or)j(a)h(mailing)f
(list)h(called)g Fj(mylist)i Fo(hosted)c(at)i(the)g(domain)e
Fj(lists.e)n(xample)o(.com)p Fo(,)h(you)f(w)o(ould)h(typically)g
(access)h(the)f(administrati)n(v)o(e)0 4793 y(pages)29
b(by)f(going)g(to)h Ff(http://lists.example.com/mailman/adm)o(in/my)o
(list)p Fo(.)46 b(The)28 b(\002rst)i(time)f(you)f(visit)i(this)0
4893 y(page,)25 b(you)g(will)g(be)h(presented)d(with)j(a)f(login)g
(page,)g(asking)f(for)h(the)g(list)h(o)n(wner')-5 b(s)25
b(passw)o(ord.)39 b(When)25 b(you)f(enter)g(the)i(passw)o(ord,)0
4992 y(Mailman)19 b(will)h(store)f(a)h(session)f(cookie)g(in)g(your)f
(bro)n(wser)m(,)g(so)i(you)e(don')o(t)g(ha)n(v)o(e)g(to)i
(re-authenticate)d(for)i(e)n(v)o(ery)f(action)h(you)f(w)o(ant)h(to)0
5092 y(tak)o(e.)25 b(This)20 b(cookie)f(is)j(stored)d(only)h(until)g
(you)f(e)o(xit)h(your)f(bro)n(wser)-5 b(.)0 5239 y(T)e(o)15
b(access)h(the)f(administrati)n(v)o(e)f(requests)h(page,)g(you')l(d)e
(visit)j Ff(http://lists.example.com/mailman/adm)o(indb/)o(mylist)0
5339 y Fo(\(note)21 b(the)h Fj(admindb)e Fo(url)h(as)h(opposed)e(to)i
(the)g Fj(admin)f Fo(url\).)29 b(Again,)21 b(the)h(\002rst)g(time)g
(you)f(visit)h(this)g(page,)g(you')o(ll)e(be)i(presented)e(with)p
0 5549 3901 4 v 0 5649 a Fg(2.2)83 b(Administr)o(ativ)n(e)25
b(Roles)2902 b(3)p eop end
%%Page: 4 4
TeXDict begin 4 3 bop 0 83 a Fo(a)23 b(login)e(page,)h(on)g(which)g
(you)f(can)h(enter)g(either)g(the)g(list)h(moderator)d(passw)o(ord)i
(or)g(the)g(list)h(o)n(wner)f(passw)o(ord.)30 b(Again,)21
b(a)i(session)0 183 y(cookie)d(is)i(dropped)d(in)j(your)e(bro)n(wser)-5
b(.)27 b(Note)22 b(also)f(that)h(if)f(you')l(v)o(e)e(pre)n(viously)h
(logged)f(in)j(as)g(the)f(list)i(o)n(wner)m(,)d(you)g(do)h(not)g(need)f
(to)0 282 y(re-login)f(to)h(access)h(the)f(administrati)n(v)o(e)e
(requests)i(page.)0 567 y Fk(2.4)100 b(Basic)28 b(Architectur)o(al)i
(Ov)n(er)s(vie)n(w)0 770 y Fo(This)23 b(section)f(will)h(outline)f(the)
g(basic)h(architecture)e(of)h(GNU)h(Mailman,)f(such)h(as)g(ho)n(w)f
(messages)g(are)h(processed)e(by)h(the)h(sytem.)0 870
y(W)m(ithout)29 b(going)f(into)h(lots)h(of)f(detail,)i(this)f
(information)d(will)j(help)f(you)f(understand)g(ho)n(w)g(the)i
(con\002guration)c(options)j(control)0 969 y(Mailman')-5
b(s)20 b(functionality)-5 b(.)0 1116 y(When)23 b(mail)h(enters)g(the)f
(system)h(from)f(your)f(mail)i(serv)o(er)m(,)f(it)h(is)h(dropped)c
(into)j(one)f(of)g(se)n(v)o(eral)g(Mailman)g Fj(queues)g
Fo(depending)e(on)0 1216 y(the)g(address)h(the)f(message)g(w)o(as)i
(sent)e(to.)29 b(F)o(or)21 b(e)o(xample,)g(if)g(your)g(system)g(has)h
(a)g(mailing)f(list)h(named)f Fj(mylist)i Fo(and)e(your)g(domain)f(is)0
1315 y Fj(e)n(xample)o(.com)p Fo(,)k(people)g(can)h(post)g(messages)g
(to)g(your)f(list)i(by)e(sending)g(them)h(to)g Fj(mylist@e)n(xample)o
(.com)p Fo(.)38 b(These)25 b(messages)g(will)0 1415 y(be)c(dropped)d
(into)j(the)g Fj(incoming)e Fo(queue,)h(which)g(is)i(also)f
(colloquially)e(called)i(the)g Fj(moder)o(ate-and-mung)o(e)16
b Fo(queue.)26 b(The)20 b(incoming)0 1515 y(queue)e(is)j(where)e(most)h
(of)f(the)h(appro)o(v)n(al)d(process)i(occurs,)g(and)g(it')-5
b(s)21 b(also)f(where)f(the)g(message)h(is)g(prepared)e(for)h(sending)f
(out)i(to)g(the)0 1614 y(list)h(membership.)0 1761 y(There)e(are)h
(separate)f(queues)g(for)g(the)h(b)n(uilt-in)f(archi)n(v)o(er)m(,)f
(the)i(bounce)e(processor)m(,)g(the)i(email)f(command)f(processor)m(,)g
(as)j(well)f(as)h(the)0 1861 y(outgoing)d(email)j(and)e(ne)n(ws)i
(queues.)k(There')-5 b(s)20 b(also)g(a)h(queue)e(for)h(messages)h
(generated)d(by)i(the)h(Mailman)f(system.)25 b(Each)20
b(of)g(these)0 1960 y(queues)26 b(typically)g(has)g(one)h
Fj(queue)e(runner)h Fo(\(or)g(\223qrunner\224\))e(that)j(processes)f
(messages)h(in)g(the)g(queue.)43 b(The)26 b(qrunners)f(are)h(idle)0
2060 y(when)20 b(there)f(are)h(no)g(messages)h(to)f(process.)0
2207 y(Ev)o(ery)f(message)i(in)g(the)f(queues)g(are)h(represented)e(by)
h(tw)o(o)h(\002les,)h(a)f(message)f(\002le)i(and)e(a)h(metadata)f
(\002le.)27 b(Both)21 b(of)f(these)h(\002les)h(share)0
2307 y(the)g(same)h(base)f(name,)g(which)f(is)i(a)g(combination)d(of)i
(a)g(unique)f(hash)h(and)g(the)g(Unix)g(time)g(that)g(the)h(message)f
(w)o(as)h(recei)n(v)o(ed.)29 b(The)0 2406 y(metadata)23
b(\002le)h(has)f(a)h(suf)n(\002x)f(of)g(`)p Fh(.db)p
Fo(')f(and)h(the)g(message)g(\002le)h(has)f(a)h(suf)n(\002x)f(of)g
(either)g(`)p Fh(.msg)p Fo(')g(if)h(stored)e(in)i(plain)f(te)o(xt,)h
(or)f(`)p Fh(.pc)o(k)p Fo(')f(if)0 2506 y(stored)e(in)g(a)h(more)e(ef)n
(\002cient)h(internal)f(representation)1596 2476 y Fe(1)1627
2506 y Fo(.)0 2653 y(As)30 b(a)g(message)g(mo)o(v)o(es)e(through)g(the)
h(incoming)f(queue,)j(it)f(performs)e(v)n(arious)g(checks)h(on)h(the)f
(message,)j(such)d(as)h(whether)f(it)0 2752 y(matches)20
b(one)g(of)h(the)g(moderation)d(criteria,)i(or)h(contains)f(disallo)n
(wed)g(MIME)g(types.)26 b(Once)21 b(a)g(message)f(is)i(appro)o(v)o(ed)c
(for)i(sending)0 2852 y(to)g(the)g(list)g(membership,)e(the)i(message)f
(is)i(prepared)c(for)i(sending)g(by)g(deleting,)g(adding,)f(or)h
(changing)f(message)h(headers,)g(adding)0 2952 y(footers,)g(etc.)25
b(Messages)c(in)f(the)g(incoming)f(queue)g(may)h(also)g(be)g(stored)g
(for)f(appending)f(to)i(digests.)0 3279 y Fp(3)120 b(The)34
b(List)f(Con\002gur)o(ation)j(P)-5 b(ages)0 3512 y Fo(After)22
b(logging)e(into)h(the)h(list)h(con\002guration)c(pages,)j(you')o(ll)e
(see)j(the)f(con\002guration)d(options)i(for)g(the)h(list,)h(grouped)c
(in)j(cate)o(gories.)0 3611 y(All)d(the)g(administrati)n(v)o(e)d(pages)
i(ha)n(v)o(e)g(some)g(common)f(elements.)24 b(In)18 b(the)h(upper)e
(section,)h(you')o(ll)f(see)i(tw)o(o)g(columns)e(labeled)h(\223Con-)0
3711 y(\002guration)24 b(Cate)o(gories\224.)39 b(Some)25
b(cate)o(gories)f(ha)n(v)o(e)g(sub-cate)o(gories)f(which)i(are)g(only)f
(visible)h(when)g(you)f(click)h(on)g(the)g(cate)o(gory)0
3811 y(link.)35 b(The)23 b(\002rst)h(page)f(you)f(see)i(after)g
(logging)d(in)j(will)g(be)g(the)f(\223General)g(Options\224)g(cate)o
(gory)-5 b(.)32 b(The)23 b(speci\002c)h(option)e(settings)i(for)0
3910 y(each)c(cate)o(gory)e(are)i(described)f(belo)n(w)-5
b(.)0 4057 y(On)24 b(the)g(right)g(side)g(of)g(the)g(top)g(section,)g
(you')o(ll)g(see)g(a)h(column)d(labeled)i(\223Other)f(Administrati)n(v)
o(e)g(Acti)n(vities\224.)37 b(Here)24 b(you')o(ll)f(\002nd)0
4157 y(some)d(other)f(things)h(you)f(can)h(do)f(to)i(your)d(list,)j(as)
g(well)g(as)f(con)m(v)o(enient)e(links)i(to)g(the)g(list)h(information)
d(page)h(and)h(the)g(list)h(archi)n(v)o(es.)0 4256 y(Note)f(the)h(big)f
(\223Logout\224)e(link;)i(use)h(this)g(if)f(you')l(re)f(\002nished)h
(con\002guring)d(your)j(list)h(and)f(don')o(t)e(w)o(ant)j(to)f(lea)n(v)
o(e)h(the)f(session)h(cookie)0 4356 y(acti)n(v)o(e)f(in)g(your)f(bro)n
(wser)-5 b(.)0 4503 y(Belo)n(w)24 b(this)h(common)d(header)m(,)h(you')o
(ll)g(\002nd)h(a)g(list)h(of)f(this)g(cate)o(gory')-5
b(s)23 b(con\002guration)e(v)n(ariables,)j(arranged)d(in)k(tw)o(o)f
(columns.)35 b(In)0 4603 y(the)26 b(left)f(column)g(is)h(a)g(brief)f
(description)f(of)i(the)f(option,)h(which)f(also)h(contains)e(a)j
(\223details\224)e(link.)41 b(F)o(or)25 b(man)o(y)g(of)g(the)h(v)n
(ariables,)0 4702 y(more)21 b(details)h(are)g(a)n(v)n(ailable)f
(describing)f(the)i(semantics)f(of)h(the)f(v)n(arious)g(a)n(v)n
(ailable)g(settings,)h(or)g(information)d(on)i(the)h(interaction)0
4802 y(between)29 b(this)h(setting)f(and)g(other)g(list)i(options.)52
b(Clicking)29 b(on)g(the)g(details)h(link)f(brings)g(up)g(a)h(page)f
(which)g(contains)g(only)g(the)0 4901 y(information)18
b(for)h(that)i(option,)d(as)j(well)g(as)g(a)f(b)n(utton)g(for)f
(submitting)g(your)g(setting,)h(and)g(a)g(link)g(back)g(to)g(the)g
(cate)o(gory)f(page.)0 5048 y(On)27 b(the)g(right)f(side)h(of)g(the)g
(tw)o(o-column)e(section,)j(you')o(ll)e(see)h(the)g(v)n(ariable')-5
b(s)26 b(current)g(v)n(alue.)44 b(Some)26 b(v)n(ariables)h(may)f
(present)g(a)0 5148 y(limited)h(set)g(of)f(v)n(alues,)i(via)f(radio)f
(b)n(utton)g(or)g(check)g(box)g(arrays.)44 b(Other)26
b(v)n(ariables)g(may)g(present)g(te)o(xt)h(entry)f(box)o(es)f(of)i(one)
f(or)p 0 5219 1560 4 v 90 5275 a Fd(1)120 5298 y Fc(Speci\002cally)l(,)
19 b(a)e(Python)h(pickle)p 0 5549 3901 4 v 0 5649 a Fg(4)2658
b(3)84 b(The)23 b(List)g(Con\002gur)o(ation)h(P)m(ages)p
eop end
%%Page: 5 5
TeXDict begin 5 4 bop 0 83 a Fo(multiple)18 b(lines.)24
b(Most)19 b(v)n(ariables)e(control)g(settings)h(for)g(the)g(operation)e
(of)i(the)g(list,)i(b)n(ut)e(others)f(perform)g(immediate)g(actions)h
(\(these)0 183 y(are)i(clearly)g(labeled\).)0 330 y(At)25
b(the)g(bottom)e(of)h(the)h(page,)f(you')o(ll)g(\002nd)g(a)h
(\223Submit\224)e(b)n(utton)h(and)g(a)h(footer)e(with)i(some)f(more)g
(useful)g(links)g(and)g(a)h(fe)n(w)f(logos.)0 429 y(Hitting)e(the)h
(submit)f(b)n(utton)f(commits)h(your)f(list)j(settings,)f(after)f(the)o
(y')l(v)o(e)e(been)i(v)n(alidated.)30 b(An)o(y)22 b(in)m(v)n(alid)f(v)n
(alues)h(will)h(be)f(ignored)0 529 y(and)g(an)h(error)f(message)h(will)
g(be)g(displayed)f(at)h(the)g(top)f(of)h(the)g(resulting)f(page.)32
b(The)22 b(results)i(page)e(will)h(al)o(w)o(ays)h(be)f(the)f(cate)o
(gory)0 628 y(page)e(that)g(you)f(submitted.)0 913 y
Fk(3.1)100 b(The)28 b(Gener)o(al)i(Options)e(Categor)s(y)0
1116 y Fo(The)23 b(General)g(Options)f(cate)o(gory)g(is)i(where)f(you)f
(can)h(set)h(a)g(v)n(ariety)e(of)h(v)n(ariables)f(that)i(af)n(fect)e
(basic)i(beha)n(vior)e(and)g(public)h(infor)n(-)0 1216
y(mation.)35 b(In)24 b(the)g(descriptions)f(that)h(follo)n(w)-5
b(,)23 b(the)h(v)n(ariable)f(name)g(is)i(gi)n(v)o(en)e(\002rst,)i
(along)e(with)h(an)g(o)o(v)o(ervie)n(w)e(and)h(a)h(description)f(of)0
1315 y(what)d(that)g(v)n(ariable)g(controls.)0 1584 y
Fg(Gener)o(al)k(list)f(personality)0 1787 y Fo(These)c(v)n(ariables,)g
(grouped)e(under)h(the)h(general)g(list)h(personality)e(section,)h
(control)g(some)g(public)f(information)f(about)i(the)g(mailing)0
1886 y(list.)0 2116 y Fl(r)o(eal)p 143 2116 46 4 v 49
w(name)42 b Fo(Ev)o(ery)22 b(mailing)h(list)i(has)g(both)e(a)h
Fj(posting)f(name)g Fo(and)h(a)g Fj(r)m(eal)g(name)p
Fo(.)36 b(The)23 b(posting)g(name)g(sho)n(ws)h(up)g(in)g(urls)g(and)f
(in)208 2216 y(email)16 b(addresses,)i(e.g.)23 b(the)17
b Ff(mylist)f Fo(in)h Ff(mylist@example.com)p Fo(.)k(The)c(posting)f
(name)g(is)i(al)o(w)o(ays)f(presented)f(in)h(lo)n(wer)208
2315 y(case,)22 b(with)h(alphanumeric)c(characters)i(and)h(no)g
(spaces.)31 b(The)22 b(list')-5 b(s)23 b(real)f(name)g(is)h(used)f(in)g
(some)g(public)f(information)f(and)208 2415 y(email)j(responses,)g
(such)g(as)i(in)e(the)h(general)e(list)i(o)o(v)o(ervie)n(w)-5
b(.)32 b(The)23 b(real)h(name)f(can)g(dif)n(fer)f(from)g(the)i(posting)
e(name)h(by)g(case)208 2515 y(only)-5 b(.)23 b(F)o(or)d(e)o(xample,)f
(if)h(the)g(posting)g(name)f(is)i Ff(mylist)p Fo(,)f(the)g(real)g(name)
g(can)g(be)g Ff(Posting)p Fo(.)0 2681 y Fl(o)o(wner)41
b Fo(This)24 b(v)n(ariable)e(contains)h(a)h(list)h(of)e(email)h
(addresses,)g(one)f(address)g(per)g(line,)i(of)e(the)h(list)g(o)n
(wners.)35 b(These)23 b(addresses)h(are)208 2780 y(used)18
b(whene)n(v)o(er)f(the)i(list)h(o)n(wners)e(need)g(to)h(be)g
(contacted,)e(either)i(by)f(the)h(system)g(or)g(by)f(end)h(users.)24
b(Often,)19 b(these)g(addresses)208 2880 y(are)h(used)g(in)g
(combination)e(with)i(the)g Ff(moderator)f Fo(addresses)h(\(see)h(belo)
n(w\).)0 3046 y Fl(moderator)40 b Fo(This)33 b(v)n(ariable)f(contains)g
(a)i(list)g(of)e(email)i(addresses,)h(one)e(address)f(per)h(line,)j(of)
d(the)g(list)h(moderators.)62 b(These)208 3146 y(addresses)46
b(are)h(often)f(used)h(in)g(combination)d(with)j(the)g
Ff(owner)g Fo(addresses.)105 b(F)o(or)46 b(e)o(xample,)52
b(when)47 b(you)f(email)208 3245 y Ff(mylist-owner@example.com)p
Fo(,)23 b(both)i(the)h(o)n(wner)f(and)h(moderator)e(addresses)h(will)i
(recei)n(v)o(e)e(a)i(cop)o(y)e(of)h(the)g(mes-)208 3345
y(sage.)0 3511 y Fl(description)41 b Fo(In)27 b(the)h(general)e(list)i
(o)o(v)o(ervie)n(w)e(page,)i(which)f(sho)n(ws)g(you)g(e)n(v)o(ery)e(a)n
(v)n(ailable)i(mailing)g(list,)j(each)d(list)h(is)h(displayed)208
3611 y(with)22 b(a)i(short)e(description.)31 b(The)22
b(contents)g(of)g(this)i(v)n(ariable)d(is)j(that)f(description.)31
b(Note)22 b(that)h(in)g(emails)g(from)f(the)g(mailing)208
3710 y(list,)h(this)f(description)f(is)i(also)f(used)g(in)g(the)g
(comment)e(section)i(of)g(the)f Fh(T)-9 b(o:)29 b Fo(address.)g(This)23
b(te)o(xt)e(should)g(be)h(relati)n(v)o(ely)f(short)208
3810 y(and)e(no)h(longer)f(than)h(one)f(line.)0 3976
y Fl(inf)n(o)41 b Fo(This)24 b(v)n(ariable)g(contains)g(a)g(longer)g
(description)f(of)h(the)g(mailing)g(list.)39 b(It)24
b(is)i(included)d(at)i(the)f(top)g(of)h(the)f(list')-5
b(s)26 b(information)208 4075 y(page,)g(and)f(it)h(can)f(contain)g
(HTML.)g(Ho)n(we)n(v)o(er)m(,)g(blank)f(lines)i(will)h(be)e
(automatically)f(con)m(v)o(erted)f(into)i(paragraph)f(breaks.)208
4175 y(Pre)n(vie)n(w)e(your)g(HTML)i(though,)e(because)g(unclosed)g(or)
i(in)m(v)n(alid)e(HTML)h(can)g(pre)n(v)o(ent)f(display)g(of)h(parts)h
(of)f(the)g(list)i(infor)n(-)208 4275 y(mation)19 b(page.)0
4441 y Fl(subject)p 259 4441 V 50 w(pr)o(e\002x)41 b
Fo(This)24 b(is)i(a)e(string)g(that)h(will)g(be)f(prepended)e(to)j(the)
f Fh(Subject:)32 b Fo(header)23 b(of)h(an)o(y)g(message)g(posted)g(to)g
(the)g(list.)39 b(F)o(or)208 4540 y(e)o(xample,)18 b(if)j(a)f(message)g
(is)h(posted)f(to)g(the)g(list)i(with)e(a)h Fh(Subject:)i
Fo(lik)o(e:)623 4715 y Fb(Subject:)44 b(This)g(is)g(a)h(message)208
4939 y Fo(and)19 b(the)i Ff(subject)p 826 4939 V 49 w(prefix)f
Fo(is)h Ff([My)49 b(List])70 b Fo(\(note)19 b(the)h(trailing)g
(space!\),)f(then)h(the)g(message)g(will)h(be)g(recei)n(v)o(ed)d(lik)o
(e)208 5039 y(so:)623 5304 y Fb(Subject:)44 b([My)g(List])g(This)g(is)h
(a)f(message)p 0 5549 3901 4 v 0 5649 a Fg(3.1)83 b(The)24
b(Gener)o(al)f(Options)g(Categor)r(y)2524 b(5)p eop end
%%Page: 6 6
TeXDict begin 6 5 bop 208 83 a Fo(If)21 b(you)f(lea)n(v)o(e)i
Ff(subject)p 981 83 46 4 v 49 w(prefix)f Fo(empty)-5
b(,)20 b(no)h(pre\002x)g(will)h(be)f(added)g(to)g(the)h
Fh(Subject:)p Fo(.)27 b(Mailman)21 b(is)h(careful)e(not)i(to)f(add)208
183 y(a)28 b(pre\002x)f(when)h(the)g(header)f(already)g(has)h(one,)h
(as)g(is)g(the)f(case)h(in)f(replies)g(for)f(e)o(xample.)47
b(The)28 b(pre\002x)f(can)h(also)h(contain)208 282 y(characters)19
b(in)h(the)g(list')-5 b(s)22 b(preferred)c(language.)23
b(In)d(this)g(case,)h(because)e(of)h(v)n(agarities)f(of)h(the)g(email)g
(standards,)f(you)g(may)h(or)208 382 y(may)f(not)h(w)o(ant)g(to)h(add)e
(a)i(trailing)f(space.)0 538 y Fl(anonymous)p 412 538
V 50 w(list)41 b Fo(This)24 b(v)n(ariable)e(allo)n(ws)h(you)f(to)h
(turn)g(on)f(some)h(simple)g(anon)o(ymizing)d(features)j(of)g(Mailman.)
33 b(When)23 b(you)f(set)208 637 y(this)28 b(option)e(to)i
Fj(Y)-8 b(es)p Fo(,)31 b(Mailman)c(will)i(remo)o(v)o(e)d(or)h(replace)g
(the)h Fh(F)m(rom:)p Fo(,)h Fh(Sender)r(:)p Fo(,)f(and)f
Fh(Reply-T)-9 b(o:)39 b Fo(\002elds)28 b(of)g(an)o(y)f(message)208
737 y(posted)19 b(to)h(the)h(list.)208 865 y(Note)e(that)g(this)h
(option)d(is)k(simply)d(an)h(aid)h(for)e(anon)o(ymization,)e(it)k
(doesn')o(t)e(guarantee)f(it.)25 b(F)o(or)19 b(e)o(xample,)f(a)h
(poster')-5 b(s)19 b(identity)208 964 y(could)i(be)i(e)n(vident)e(in)i
(their)f(signature,)g(or)g(in)h(other)e(mail)i(headers,)f(or)g(e)n(v)o
(en)g(in)g(the)h(style)g(of)f(the)h(content)e(of)h(the)h(message.)208
1064 y(There')-5 b(s)19 b(little)i(Mailman)f(can)g(do)g(about)f(this)i
(kind)e(of)h(identity)f(leakage.)0 1328 y Fg(Reply-T)-10
b(o)23 b(header)g(m)o(unging)0 1531 y Fo(This)d(section)g(controls)g
(what)g(happens)f(to)h(the)g Fh(Reply-T)-9 b(o:)24 b
Fo(headers)19 b(of)h(messages)g(posted)g(through)e(your)h(list.)0
1678 y(Be)n(w)o(are!)32 b Fh(Reply-T)-9 b(o:)28 b Fo(munging)20
b(is)j(considered)e(a)h(religious)g(issue)h(and)f(the)g(policies)g(you)
g(set)h(here)f(can)g(ignite)g(some)g(of)g(the)h(most)0
1777 y(heated)i(of)n(f-topic)f(\003ame)i(w)o(ars)g(on)f(your)g(mailing)
g(lists.)43 b(W)-7 b(e')o(ll)27 b(try)f(to)g(stay)g(as)h(agnostic)e(as)
h(possible,)h(b)n(ut)f(our)f(biases)h(may)f(still)0 1877
y(peak)20 b(through.)0 2024 y Fh(Reply-T)-9 b(o:)33 b
Fo(is)26 b(a)f(header)f(that)h(is)h(commonly)d(used)i(to)g(redirect)f
(replies)h(to)g(messages.)39 b(Exactly)24 b(what)h(happens)f(when)g
(your)g(uses)0 2123 y(reply)e(to)h(such)f(a)h(message)f(depends)g(on)g
(the)h(mail)f(readers)g(your)g(users)g(use,)i(and)e(what)g(functions)g
(the)o(y)f(pro)o(vide.)31 b(Usually)-5 b(,)22 b(there)0
2223 y(is)h(both)e(a)i(\223reply)e(to)h(sender\224)f(b)n(utton)g(and)h
(a)g(\223reply)f(to)i(all\224)f(b)n(utton.)30 b(If)22
b(people)e(use)j(these)f(b)n(uttons)f(correctly)-5 b(,)21
b(you)g(will)i(probably)0 2323 y(ne)n(v)o(er)c(need)g(to)i(munge)d
Fh(Reply-T)-9 b(o:)p Fo(,)19 b(so)h(the)h(def)o(ault)e(v)n(alues)h
(should)f(be)h(\002ne.)0 2469 y(Since)i(an)f(informed)f(decision)g(is)j
(al)o(w)o(ays)f(best,)g(here)f(are)g(links)h(to)g(tw)o(o)f(articles)h
(that)g(discuss)g(the)f(opposing)f(vie)n(wpoints)g(in)i(great)0
2569 y(detail:)125 2774 y Fi(\017)41 b Fo(Reply-T)-7
b(o)19 b(Munging)f(Considered)h(Harmful)125 2929 y Fi(\017)41
b Fo(Reply-T)-7 b(o)19 b(Munging)f(Considered)h(Useful)0
3134 y(The)24 b(three)g(options)f(in)i(this)g(section)f(w)o(ork)f
(together)g(to)i(pro)o(vide)d(enough)h(\003e)o(xibility)g(to)i(do)f
(whate)n(v)o(er)e Fh(Reply-T)-9 b(o:)32 b Fo(munging)22
b(you)0 3233 y(might)e(\(misguidingly)d(:\))26 b(feel)20
b(you)f(need)h(to)g(do.)0 3438 y Fl(\002rst)p 148 3438
V 51 w(strip)p 365 3438 V 50 w(r)o(eply)p 599 3438 V
50 w(to)41 b Fo(This)31 b(v)n(ariable)f(controls)g(whether)g(an)o(y)g
Fh(Reply-T)-9 b(o:)45 b Fo(header)30 b(already)g(present)g(in)h(the)g
(posted)g(message)208 3538 y(should)20 b(get)h(remo)o(v)o(ed)e(before)h
(an)o(y)g(other)h(munging)e(occurs.)27 b(Stripping)20
b(this)i(header)e(will)i(be)g(done)e(re)o(gardless)g(of)h(whether)208
3637 y(or)e(not)h(Mailman)g(will)h(add)e(its)j(o)n(wn)d
Fh(Reply-T)-9 b(o:)24 b Fo(header)19 b(to)h(the)g(message.)208
3765 y(If)e(this)i(option)d(is)j(set)g(to)f Fj(No)p Fo(,)g(then)g(an)o
(y)f(e)o(xisting)g Fh(Reply-T)-9 b(o:)23 b Fo(header)18
b(will)h(be)g(retained)f(in)h(the)g(posted)f(message.)24
b(If)19 b(Mailman)208 3865 y(adds)g(its)h(o)n(wn)f(header)m(,)f(it)i
(will)g(contain)f(addresses)g(which)g(are)g(the)g(union)g(of)g(the)g
(original)f(header)h(and)g(the)g(Mailman)g(added)208
3964 y(addresses.)28 b(The)21 b(mail)h(standards)e(specify)h(that)h(a)f
(message)h(may)f(only)f(ha)n(v)o(e)h(one)g Fh(Reply-T)-9
b(o:)26 b Fo(header)m(,)20 b(b)n(ut)i(that)f(that)h(header)208
4064 y(may)d(contain)g(multiple)h(addresses.)0 4220 y
Fl(r)o(eply)p 189 4220 V 50 w(goes)p 392 4220 V 49 w(to)p
511 4220 V 50 w(list)42 b Fo(This)25 b(v)n(ariable)f(controls)h
(whether)f(Mailman)g(will)i(add)f(its)h(o)n(wn)f Fh(Reply-T)-9
b(o:)33 b Fo(header)m(,)25 b(and)f(if)i(so,)g(what)g(the)208
4319 y(v)n(alue)19 b(of)h(that)g(header)f(will)i(be)f(\(not)g(counting)
e(original)h(header)g(stripping)g(\226)h(see)h(abo)o(v)o(e\).)208
4447 y(When)g(you)f(set)j(this)f(v)n(ariable)e(to)i Fj(P)-7
b(oster)p Fo(,)22 b(no)f(additional)f Fh(Reply-T)-9 b(o:)27
b Fo(header)20 b(will)i(be)g(added)e(by)h(Mailman.)28
b(This)22 b(setting)g(is)208 4547 y(strongly)c(recommended.)208
4674 y(When)24 b(you)f(set)i(this)g(v)n(ariable)e(to)h
Fj(This)h(list)p Fo(,)h(a)f Fh(Reply-T)-9 b(o:)31 b Fo(header)23
b(pointing)g(back)h(to)g(your)f(list')-5 b(s)26 b(posting)d(address)h
(will)h(be)208 4774 y(added.)208 4902 y(When)17 b(you)f(set)j(this)e(v)
n(ariable)g(to)g Fj(Explicit)h(addr)m(ess)p Fo(,)f(the)g(v)n(alue)g(of)
g(the)h(v)n(ariable)e Ff(reply)p 2811 4902 V 50 w(to)p
2961 4902 V 50 w(address)h Fo(\(see)g(belo)n(w\))g(will)208
5001 y(be)h(added.)23 b(Note)c(that)g(this)g(is)h(one)e(situation)g
(where)g Fh(Reply-T)-9 b(o:)23 b Fo(munging)16 b(may)j(ha)n(v)o(e)f(a)h
(le)o(gitimate)f(purpose.)23 b(Say)18 b(you)g(ha)n(v)o(e)208
5101 y(tw)o(o)23 b(lists)h(at)f(your)e(site,)j(an)f(announce)d(list)k
(and)e(a)h(discussion)g(list.)33 b(The)23 b(announce)d(list)k(might)e
(allo)n(w)h(postings)f(only)g(from)208 5201 y(a)f(small)h(number)d(of)i
(appro)o(v)o(ed)d(users;)k(the)f(general)f(list)j(membership)c
(probably)g(can')o(t)h(post)h(to)g(this)h(list.)29 b(But)22
b(you)e(w)o(ant)h(to)208 5300 y(allo)n(w)g(comments)g(on)g
(announcements)e(to)i(be)h(posted)f(to)h(the)f(general)g(discussion)g
(list)i(by)e(an)o(y)g(list)i(member)-5 b(.)28 b(In)21
b(this)h(case,)208 5400 y(you)d(can)h(set)h(the)f Fh(Reply-T)-9
b(o:)24 b Fo(header)19 b(for)g(the)h(announce)e(list)k(to)e(point)f(to)
i(the)f(discussion)g(list')-5 b(s)21 b(posting)f(address.)p
0 5549 3901 4 v 0 5649 a Fg(6)2658 b(3)84 b(The)23 b(List)g(Con\002gur)
o(ation)h(P)m(ages)p eop end
%%Page: 7 7
TeXDict begin 7 6 bop 0 83 a Fl(r)o(eply)p 189 83 46
4 v 50 w(to)p 309 83 V 49 w(addr)o(ess)42 b Fo(This)22
b(is)h(the)g(address)f(that)g(will)h(be)g(added)e(in)h(the)h
Fh(Reply-T)-9 b(o:)28 b Fo(header)21 b(if)h Ff(reply)p
3062 83 V 50 w(goes)p 3312 83 V 50 w(to)p 3462 83 V 50
w(list)g Fo(is)i(set)208 183 y(to)c Fj(Explicit)g(addr)m(ess)p
Fo(.)0 451 y Fg(Umbrella)k(list)g(settings)0 654 y Fo(TBD.)d(Note)f
(that)g(umbrella)f(lists)i(are)g(deprecated)d(and)i(will)g(be)h
(replace)e(with)h(a)h(better)f(mechanism)f(for)g(Mailman)h(3.0.)0
922 y Fg(Noti\002cations)0 1125 y Fo(Mailman)d(sends)g(noti\002cations)
g(to)g(the)g(list)i(administrators)d(or)h(list)h(members)e(under)g(a)i
(number)e(of)h(dif)n(ferent)e(circumstances.)23 b(Most)0
1225 y(of)f(these)g(noti\002cations)f(can)g(be)h(con\002gured)d(in)j
(this)h(section,)f(b)n(ut)f(see)i(the)f(Bounce)f(Processing)g(and)g
(Auto-responder)e(cate)o(gories)0 1324 y(for)h(other)f(noti\002cations)
g(that)i(Mailman)e(can)h(send.)0 1554 y Fl(send)p 166
1554 V 51 w(r)o(eminders)41 b Fo(By)25 b(def)o(ault)f(Mailman)f(sends)i
(all)g(list)g(members)e(a)i(monthly)e(passw)o(ord)g(reminder)-5
b(.)36 b(This)24 b(notice)g(serv)o(es)g(tw)o(o)208 1654
y(purposes.)e(First,)e(it)e(reminds)f(people)g(about)h(all)g(the)g
(lists)i(the)o(y)d(may)h(be)g(subscribed)e(to)j(on)e(this)i(domain,)e
(including)f(the)i(lists)208 1753 y(where)25 b(their)g(subscription)f
(may)i(be)f(disabled.)41 b(Second,)26 b(it)g(reminds)f(people)g(about)g
(their)g(passw)o(ords)h(for)f(these)h(lists,)i(as)208
1853 y(well)19 b(as)g(the)g(url)f(for)g(their)g(personal)g(options)g
(pages,)g(so)h(that)g(the)o(y)e(can)i(more)f(easily)h(con\002gure)d
(their)j(subscription)e(options.)208 1986 y(Some)j(people)h(get)g(anno)
o(yed)e(with)i(these)h(monthly)d(reminders,)h(and)h(the)o(y)f(can)h
(disable)g(the)h(reminders)d(via)j(their)f(subscrip-)208
2086 y(tion)f(options)g(page.)26 b(F)o(or)21 b(some)f(lists,)j(the)e
(monthly)e(reminders)g(aren')o(t)h(appropriate)e(for)i(an)o(y)g(of)h
(the)g(members,)f(so)h(you)f(can)208 2185 y(disable)g(them)f(list-wide)
i(by)e(setting)i(the)f Ff(send)p 1635 2185 V 50 w(reminders)f
Fo(v)n(ariable)g(to)h Fj(No)p Fo(.)0 2351 y Fl(welcome)p
310 2351 V 50 w(msg)41 b Fo(When)26 b(ne)n(w)f(members)g(are)h
(subscribed)e(to)i(the)f(list,)j(either)d(by)h(their)f(o)n(wn)g
(action,)i(or)e(the)h(action)f(of)g(a)h(list)h(ad-)208
2451 y(ministrator)m(,)18 b(a)h(welcome)g(message)h(can)f(be)g(sent)h
(to)g(them.)k(The)19 b(welcome)g(message)g(contains)g(some)g(common)f
(boilerplate)208 2550 y(information,)e(such)i(as)h(the)f(name)g(of)g
(the)g(list,)i(instructions)d(for)h(posting)g(to)g(the)g(list,)i(and)e
(the)g(member')-5 b(s)18 b(subscription)e(pass-)208 2650
y(w)o(ord.)28 b(Y)-9 b(ou)21 b(can)g(add)h(additional)e(information)f
(to)j(the)f(welcome)g(message)h(by)f(typing)f(the)i(te)o(xt)f(into)h
(the)f Ff(welcome)p 3706 2650 V 50 w(msg)208 2750 y Fo(te)o(xt)f(box.)k
(Note)c(that)g(because)g(this)g(te)o(xt)g(is)h(sent)g(as)g(part)f(of)g
(an)g(email,)g(it)h(should)e Fl(not)h Fo(contain)f(HTML.)0
2916 y Fl(send)p 166 2916 V 51 w(welcome)p 522 2916 V
50 w(msg)42 b Fo(This)20 b(\003ag)g(controls)f(whether)h(or)f(not)h
(the)h(welcome)e(message)h(is)h(sent)g(to)f(ne)n(w)g(subscribers.)0
3082 y Fl(goodby)o(e)p 301 3082 V 49 w(msg)42 b Fo(Lik)o(e)20
b(the)g Ff(welcome)p 1179 3082 V 50 w(msg)p Fo(,)g(a)h(\223goodbye\224)
d(message)i(can)g(be)h(sent)f(to)h(members)e(when)h(the)o(y)g
(unsubscribe)f(from)208 3181 y(the)h(list.)25 b(Unlik)o(e)20
b(the)g(welcome)f(message,)h(there')-5 b(s)20 b(no)f(boilerplate)g(for)
g(the)h(goodbye)e(message.)24 b(Enter)c(the)g(entire)f(goodbye)208
3281 y(message)h(you')l(d)e(lik)o(e)i(unsubscribing)e(members)h(to)h
(recei)n(v)o(e)f(into)h(the)h Ff(goodbye)p 2646 3281
V 49 w(msg)f Fo(te)o(xt)g(box.)0 3447 y Fl(send)p 166
3447 V 51 w(goodby)o(e)p 513 3447 V 49 w(msg)42 b Fo(This)20
b(\003ag)g(controls)g(whether)f(or)h(not)f(the)i(goodbye)c(message)j
(is)i(sent)e(to)g(unsubscribing)e(members.)0 3613 y Fl(admin)p
231 3613 V 51 w(immed)p 526 3613 V 51 w(notify)40 b Fo(List)27
b(moderators)e(get)i(noti\002cations)f(of)h(pending)e(administrati)n(v)
o(e)g(actions,)j(such)f(as)g(subscription)f(or)208 3713
y(unsubscription)20 b(requests)j(that)g(require)f(moderator)f(appro)o
(v)n(al,)g(or)i(posted)f(messages)h(that)h(are)f(being)f(held)g(for)h
(moderator)208 3812 y(appro)o(v)n(al.)49 b(List)30 b(moderators)e(will)
i(al)o(w)o(ays)f(get)h(a)f(daily)g(summary)f(of)h(such)g(pending)e
(requests,)k(b)n(ut)e(the)o(y)g(can)g(also)h(get)208
3912 y(immediate)18 b(noti\002cations)f(when)i(such)f(a)i(request)e(is)
i(made.)k(The)18 b Ff(admin)p 2398 3912 V 50 w(immed)p
2698 3912 V 50 w(notify)g Fo(v)n(ariable)g(controls)g(whether)208
4012 y(these)i(immediate)f(noti\002cations)g(are)i(sent)f(or)g(not.)25
b(It')-5 b(s)20 b(generally)f(a)i(good)e(idea)h(to)g(lea)n(v)o(e)g
(this)h(set)g(to)f Fj(Y)-8 b(es)p Fo(.)0 4178 y Fl(admin)p
231 4178 V 51 w(notify)p 491 4178 V 49 w(mchanges)41
b Fo(This)21 b(v)n(ariable)g(controls)f(whether)g(the)h(list)i
(administrators)d(should)g(get)h(noti\002cations)g(when)f(mem-)208
4277 y(bers)g(join)g(or)f(lea)n(v)o(e)h(the)h(list.)0
4443 y Fl(r)o(espond)p 290 4443 V 50 w(to)p 410 4443
V 50 w(post)p 608 4443 V 50 w(r)o(equests)41 b Fo(This)24
b(v)n(ariable)e(controls)g(whether)g(the)h(original)f(sender)g(of)h(a)h
(posting)e(gets)h(a)h(notice)e(when)h(their)208 4543
y(message)d(is)h(held)e(for)h(moderator)e(appro)o(v)n(al.)0
4811 y Fg(Additional)26 b(settings)0 5014 y Fo(This)20
b(section)g(contains)g(some)g(miscellaneous)f(settings)h(for)g(your)f
(mailing)g(list.)0 5244 y Fl(emer)o(gency)40 b Fo(When)24
b(this)h(option)e(is)i(enabled,)f(all)h(list)g(traf)n(\002c)f(is)i
(emer)o(genc)o(y)21 b(moderated,)i(i.e.)37 b(held)24
b(for)g(moderation.)35 b(T)l(urn)23 b(this)208 5344 y(option)c(on)g
(when)h(your)f(list)i(is)g(e)o(xperiencing)d(a)i(\003ame)n(w)o(ar)g
(and)g(you)f(w)o(ant)h(a)h(cooling)e(of)n(f)g(period.)p
0 5549 3901 4 v 0 5649 a Fg(3.1)83 b(The)24 b(Gener)o(al)f(Options)g
(Categor)r(y)2524 b(7)p eop end
%%Page: 8 8
TeXDict begin 8 7 bop 0 83 a Fl(new)p 148 83 46 4 v 51
w(member)p 494 83 V 50 w(options)41 b Fo(Each)16 b(member)f(has)i(a)g
(set)h(of)e(subscription)f(options)h(which)g(the)o(y)g(can)g(use)h(to)f
(control)g(ho)n(w)g(the)o(y)g(recei)n(v)o(e)208 183 y(messages)h(and)g
(otherwise)g(interact)g(with)h(the)f(list.)26 b(While)18
b(the)f(members)g(can)g(change)f(these)i(settings)g(by)f(logging)f
(into)h(their)208 282 y(personal)k(options)g(page,)h(you)g(might)g(w)o
(ant)g(to)h(set)g(the)g(def)o(ault)e(for)h(a)h(number)e(of)h(the)g
(member)g(options.)30 b(Y)-9 b(ou)22 b(can)g(do)g(that)208
382 y(with)e(this)h(v)n(ariable,)d(b)n(ut)j(see)f(also)h(the)f(other)g
(cate)o(gories)f(for)g(other)h(member)e(def)o(aults)i(you)f(can)h(set.)
208 515 y(This)g(v)n(ariable)g(presents)g(a)h(set)g(of)g(checkbox)o(es)
d(which)i(control)f(the)i(def)o(aults)f(for)g(some)g(of)g(the)h(member)
e(options.)25 b Fj(Conceal)208 614 y(the)31 b(member')m(s)h(addr)m(ess)
f Fo(speci\002es)h(whether)f(or)g(not)h(the)g(address)f(is)i(displayed)
d(in)i(the)g(list)h(roster)-5 b(.)59 b Fj(Ac)n(knowledg)o(e)31
b(the)208 714 y(member')m(s)22 b(posting)g Fo(controls)h(whether)f(or)h
(not)f(Mailman)h(sends)g(an)g(ackno)n(wledgement)d(to)j(a)g(member)f
(when)h(the)o(y)f(post)h(a)208 814 y(message)e(to)i(the)f(list.)31
b Fj(Do)22 b(not)g(send)g(a)g(copy)f(of)i(a)f(member')m(s)f(own)h(post)
g Fo(speci\002es)h(whether)e(a)h(member)f(posting)g(to)h(the)g(list)208
913 y(will)c(get)f(a)h(cop)o(y)f(of)g(their)h(o)n(wn)f(posting.)23
b Fj(F)l(ilter)18 b(out)f(duplicate)f(messa)o(g)o(es)i(to)g(list)h
(member)o(s)f(\(if)g(possible\))f Fo(speci\002es)h(whether)208
1013 y(members)g(who)h(are)h(e)o(xplicitly)e(listed)i(as)g(a)g
(recipient)f(of)g(a)h(message)g(\(e.g.)k(via)19 b(the)h
Fh(Cc:)25 b Fo(header\))18 b(will)j(also)e(get)h(a)g(cop)o(y)f(from)208
1112 y(Mailman.)208 1245 y(Of)h(course,)f(members)g(can)h(al)o(w)o(ays)
h(o)o(v)o(erride)d(these)i(def)o(aults)g(by)g(making)e(changes)i(on)f
(their)h(membership)f(options)g(page.)0 1411 y Fl(administri)o(via)41
b Fo(This)20 b(option)e(speci\002es)i(whether)f(Mailman)g(will)h
(search)f(posted)g(messages)h(for)f Fj(admimistrivia)p
Fo(,)h(in)f(other)g(w)o(ords,)208 1511 y(email)f(commands)f(which)h
(usually)g(should)g(be)h(posted)f(to)g(the)h Ff(-request)f
Fo(address)g(for)g(the)h(list.)25 b(Setting)19 b(this)g(to)g
Fj(Y)-8 b(es)20 b Fo(helps)208 1611 y(pre)n(v)o(ent)e(such)i(things)g
(as)h(unsubscribe)d(messages)i(getting)g(erroneously)d(posted)j(to)g
(the)g(list.)208 1743 y(If)g(a)g(message)g(seems)h(to)f(contain)f
(administri)n(via,)g(it)i(is)g(held)f(for)f(moderator)f(appro)o(v)n
(al.)0 1909 y Fl(max)p 158 1909 V 50 w(message)p 499
1909 V 50 w(size)42 b Fo(This)17 b(option)e(speci\002es)j(a)f(maximum)e
(message)i(size,)h(in)f(kilobytes,)g(o)o(v)o(er)e(which)i(the)g
(message)f(will)i(be)f(held)208 2009 y(for)i(moderator)f(appro)o(v)n
(al.)0 2175 y Fl(host)p 153 2175 V 50 w(name)41 b Fo(This)28
b(option)f(speci\002es)h(the)g(host)f(name)h(part)f(of)g(email)h
(addresses)g(used)f(by)g(this)i(list.)48 b(F)o(or)28
b(e)o(xample,)g(this)g(is)h(the)208 2275 y Ff(example.com)18
b Fo(part)i(of)g(the)g(posting)f(address)h Ff(mylist@example.com)p
Fo(.)208 2408 y(It')-5 b(s)25 b(generally)f(not)g(a)i(good)e(idea)g(to)
i(change)d(this)j(v)n(alue,)f(since)g(its)h(def)o(ault)f(v)n(alue)f(is)
i(speci\002ed)f(when)f(the)h(mailing)g(list)h(is)208
2507 y(created.)d(Changing)18 b(this)h(to)g(an)g(incorrect)e(v)n(alue)i
(could)f(mak)o(e)g(it)i(dif)n(\002cult)e(to)h(contact)f(your)g(mailing)
g(list.)26 b(Also)19 b(not)g(that)g(the)208 2607 y(url)j(used)h(to)g
(visit)g(the)g(list')-5 b(s)24 b(pages)e(is)i(not)e(con\002gurable)f
(through)f(the)j(web)g(interf)o(ace.)31 b(This)23 b(is)h(because)e(if)h
(you)f(messed)h(it)208 2706 y(up,)c(you')l(d)f(ha)n(v)o(e)i(to)g(ha)n
(v)o(e)g(the)g(site)h(administrator)e(\002x)h(it.)0 2872
y Fl(include)p 263 2872 V 51 w(rfc2369)p 584 2872 V 48
w(headers)41 b Fo(RFC)22 b(2369)e(is)h(an)g(internet)f(standard)f(that)
i(describes)f(a)h(b)n(unch)f(of)g(headers)g(that)h(mailing)f(list)h
(man-)208 2972 y(agers)30 b(should)g(add)g(to)h(messages)g(to)g(mak)o
(e)g(it)g(easier)g(for)g(people)e(to)i(interact)g(with)g(the)g(list.)58
b(Mail)31 b(reading)e(programs)208 3072 y(which)c(support)g(this)i
(standard)e(may)h(pro)o(vide)f(b)n(uttons)g(for)h(easy)g(access)h(to)g
(the)f(list')-5 b(s)28 b(archi)n(v)o(es,)f(or)f(for)f(subscribing)g
(and)208 3171 y(unsubscribing)19 b(to)k(the)g(list.)32
b(It')-5 b(s)24 b(generally)d(a)h(good)g(idea)g(to)h(enable)e(these)i
(headers)f(as)h(it)g(pro)o(vides)e(for)g(an)i(impro)o(v)o(ed)d(user)208
3271 y(e)o(xperience.)i(These)e(headers)g(are)g(often)f(called)h(the)g
Ff(List-*)g Fo(headers.)208 3404 y(Ho)n(we)n(v)o(er)m(,)f(not)h(all)i
(mail)f(readers)f(are)h(standards)f(compliant)f(yet,)i(and)g(if)g(you)f
(ha)n(v)o(e)g(a)i(lar)o(ge)e(number)f(of)h(members)g(who)h(are)208
3503 y(using)i(non-compliant)d(mail)k(readers,)g(the)o(y)f(may)g(be)g
(anno)o(yed)f(at)i(these)g(headers.)35 b(Y)-9 b(ou)23
b(should)f(\002rst)j(try)e(to)h(educate)f(your)208 3603
y(members)j(as)h(to)h(why)e(these)h(headers)f(e)o(xist,)j(and)e(ho)n(w)
f(to)i(hide)e(them)h(in)g(their)g(mail)g(clients.)46
b(As)28 b(a)g(last)g(resort)f(you)f(can)208 3703 y(disable)20
b(these)g(headers,)f(b)n(ut)h(this)h(is)g(not)f(recommended.)0
3869 y Fl(include)p 263 3869 V 51 w(list)p 420 3869 V
51 w(post)p 619 3869 V 50 w(header)41 b Fo(The)27 b Fh(List-P)l(ost:)40
b Fo(header)26 b(is)j(one)e(of)g(the)h(headers)f(recommended)e(by)i
(RFC)i(2369.)46 b(Ho)n(we)n(v)o(er)26 b(for)208 3968
y(some)20 b(announce-only)d(mailing)k(lists,)h(only)e(a)h(v)o(ery)f
(select)i(group)d(of)i(people)f(are)h(allo)n(wed)f(to)h(post)g(to)g
(the)g(list;)i(the)e(general)208 4068 y(membership)d(is)j(usually)f
(not)g(allo)n(wed)g(to)g(post)h(to)f(such)g(lists.)27
b(F)o(or)20 b(lists)i(of)e(this)h(nature,)e(the)i Fh(List-P)l(ost:)k
Fo(header)19 b(is)i(mislead-)208 4168 y(ing.)32 b(Select)24
b Fj(No)f Fo(to)g(disable)g(the)g(inclusion)f(of)g(this)i(header)-5
b(.)32 b(\(This)23 b(does)g(not)f(af)n(fect)h(the)g(inclusion)e(of)i
(the)g(other)f Ff(List-*)208 4267 y Fo(headers.\))0 4552
y Fk(3.2)100 b(The)28 b(P)l(ass)m(w)o(ords)h(Categor)s(y)0
4755 y Fo(As)22 b(mentioned)d(abo)o(v)o(e,)g(there)h(are)h(tw)o(o)h
(primary)d(administrati)n(v)o(e)g(roles)i(for)f(mailing)h(lists.)28
b(In)21 b(this)g(cate)o(gory)e(you)i(can)f(specify)h(the)0
4855 y(passw)o(ord)e(for)h(these)g(roles.)0 5001 y(The)25
b(list)i(o)n(wner)e(has)h(total)g(control)f(o)o(v)o(er)f(the)i
(con\002guration)d(of)j(their)f(mailing)g(list)i(\(within)e(some)h
(bounds)e(as)j(speci\002ed)e(by)h(the)0 5101 y(site)32
b(administrator\).)54 b(Note)31 b(that)g(on)f(this)h(page,)h(for)f
(historical)f(reasons,)i(the)f(list)h(o)n(wner)e(role)g(is)i(described)
d(here)h(as)i(the)e Fj(list)0 5201 y(administr)o(ator)p
Fo(.)36 b(Y)-9 b(ou)24 b(can)g(set)h(the)g(list)g(o)n(wner')-5
b(s)24 b(passw)o(ord)f(by)h(entering)f(it)i(in)g(the)f(passw)o(ord)g
(\002eld)g(on)g(the)g(left.)38 b(Y)-9 b(ou)24 b(must)g(type)0
5300 y(it)30 b(twice)g(for)e(con\002rmation.)50 b(Note)30
b(that)f(if)g(you)g(for)o(get)e(this)j(passw)o(ord,)h(the)e(only)f(w)o
(ay)i(for)e(you)h(to)g(get)h(back)e(into)h(your)f(list')-5
b(s)0 5400 y(administrati)n(v)o(e)18 b(pages)i(is)h(to)g(ask)f(the)g
(site)h(administrator)e(to)h(reset)h(it)g(for)e(you)h(\(there')-5
b(s)19 b(no)h(passw)o(ord)g(reminders)e(for)i(list)h(o)n(wners\).)p
0 5549 3901 4 v 0 5649 a Fg(8)2658 b(3)84 b(The)23 b(List)g(Con\002gur)
o(ation)h(P)m(ages)p eop end
%%Page: 9 9
TeXDict begin 9 8 bop 0 83 a Fo(If)22 b(you)f(w)o(ant)h(to)h(dele)o
(gate)d(list)j(moderation)d(to)j(someone)d(else,)j(you)f(can)f(enter)h
(a)h(dif)n(ferent)d(moderator)g(passw)o(ord)h(in)i(the)f(\002eld)g(on)0
183 y(the)k(right)e(\(typed)h(twice)g(for)g(con\002rmation\).)39
b(Note)25 b(that)h(if)g(you)e(aren')o(t)g(going)h(to)g(dele)o(gate)f
(moderation,)h(and)f(the)i(same)g(people)0 282 y(are)19
b(going)f(to)h(both)f(con\002gure)f(the)i(list)i(and)d(moderate)g
(postings)g(to)h(the)g(list,)i(don')o(t)c(enter)i(an)o(ything)e(into)h
(the)h(moderator)e(passw)o(ord)0 382 y(\002elds.)24 b(If)17
b(you)e(do)i(enter)f(a)h(separate)f(moderator)f(passw)o(ord,)h(be)h
(sure)f(to)h(\002ll)g(in)g(the)g Ff(moderator)e Fo(v)n(ariable)h(in)h
(the)f Fj(Gener)o(al)h(options)0 482 y Fo(cate)o(gory)h(page.)0
766 y Fk(3.3)100 b(The)28 b(Language)j(Options)d(Categor)s(y)0
969 y Fo(Mailman)22 b(is)i(multilingual)e(and)g(internationalized,)f
(meaning)h(you)g(can)h(set)g(up)g(your)f(list)i(so)f(that)g(members)f
(can)h(interact)g(with)g(it)0 1069 y(in)d(an)o(y)g(of)g(a)g(number)f
(of)h(natural)f(languages.)k(Of)e(course,)e(Mailman)g(w)o(on')o(t)h
(translate)g(list)h(postings.)j(:\))0 1216 y(Ho)n(we)n(v)o(er)m(,)18
b(if)i(your)f(site)h(administrator)e(has)j(enabled)d(its)j(support,)d
(you)h(can)h(set)h(your)d(list)j(up)f(to)g(support)e(an)o(y)h(of)h
(about)f(tw)o(o)h(dozen)0 1315 y(languages,)i(such)h(as)g(German,)g
(Italian,)g(Japanese,)g(or)f(Spanish.)33 b(Y)-9 b(our)22
b(list)i(members)e(can)h(then)f(choose)g(an)o(y)g(of)h(your)f
(supported)0 1415 y(languages)27 b(as)i(their)g Fj(pr)m(eferr)m(ed)f
(langua)o(g)o(e)e Fo(for)i(interacting)f(with)i(the)g(list.)51
b(Such)28 b(things)g(as)h(their)f(member)f(options)h(page)g(will)0
1515 y(be)f(displayed)e(in)i(this)g(language.)43 b(Each)26
b(mailing)g(list)i(also)f(has)g(its)h(o)n(wn)e Fj(pr)m(eferr)m(ed)h
(langua)o(g)o(e)d Fo(which)i(is)i(the)f(language)e(the)h(list)0
1614 y(supports)19 b(if)i(no)e(other)h(language)e(conte)o(xt)h(is)i
(kno)n(wn.)0 1761 y(These)f(v)n(ariables)f(control)g(the)i(language)d
(settings)i(for)g(your)f(mailing)g(list:)0 1991 y Fl(pr)o(eferr)o(ed)p
345 1991 46 4 v 49 w(language)40 b Fo(This)18 b(is)i(the)f(list')-5
b(s)20 b(preferred)c(language,)h(which)h(is)i(the)f(language)d(that)j
(the)g(list)h(administrati)n(v)o(e)d(pages)h(will)208
2091 y(be)g(displayed)f(in.)25 b(Also)19 b(an)o(y)e(messages)i(sent)g
(to)f(the)h(list)h(o)n(wners)d(by)h(Mailman)g(will)i(be)e(sent)h(in)f
(this)h(language.)k(This)c(option)208 2190 y(is)i(presented)e(as)h(a)h
(drop-do)n(wn)c(list)k(containing)e(the)h(language)e(enabled)h(in)i
(the)f Ff(available)p 3031 2190 V 49 w(languages)f Fo(v)n(ariable.)0
2356 y Fl(a)n(v)o(ailable)p 322 2356 V 49 w(languages)40
b Fo(This)21 b(set)h(of)e(checkbox)o(es)e(contains)i(all)i(the)e
(natural)g(languages)f(that)i(your)f(site)h(administrator)e(has)i(made)
208 2456 y(a)n(v)n(ailable)h(to)h(your)f(mailing)h(lists.)35
b(Select)23 b(an)o(y)f(language)g(that)h(you')l(d)e(either)i(lik)o(e)g
(your)f(members)g(to)h(be)g(able)g(to)h(vie)n(w)f(the)208
2556 y(list)e(in,)f(or)g(that)g(you')l(d)e(lik)o(e)j(to)f(be)g(able)g
(to)h(use)f(in)h(your)d(list')-5 b(s)22 b Ff(preferred)p
2477 2556 V 49 w(language)d Fo(v)n(ariable.)0 2722 y
Fl(encode)p 250 2722 V 50 w(ascii)p 457 2722 V 51 w(pr)o(e\002xes)40
b Fo(If)57 b(your)f(mailing)h(list')-5 b(s)58 b(preferred)d(language)g
(uses)j(a)g(non-ASCII)d(character)h(set)i(and)f(the)208
2821 y Ff(subject)p 563 2821 V 49 w(prefix)27 b Fo(contains)h
(non-ASCII)e(characters,)j(the)f(pre\002x)g(will)h(al)o(w)o(ays)f(be)g
(encoded)e(according)g(to)j(the)f(rel-)208 2921 y(e)n(v)n(ant)17
b(standards.)23 b(Ho)n(we)n(v)o(er)m(,)16 b(if)i(your)e(subject)i
(pre\002x)f(contains)g(only)g(ASCII)h(characters,)f(you)g(may)g(w)o
(ant)h(to)g(set)h(this)f(option)208 3021 y(to)26 b Fj(Ne)o(ver)g
Fo(to)g(disable)f(pre\002x)g(encoding.)40 b(This)26 b(can)g(mak)o(e)f
(the)h(subject)f(headers)g(slightly)h(more)f(readable)f(for)h(users)h
(with)208 3120 y(mail)20 b(readers)f(that)i(don')o(t)d(properly)g
(handle)h(non-ASCII)g(encodings.)208 3253 y(Note)k(ho)n(we)n(v)o(er)m
(,)f(that)i(if)g(your)e(mailing)h(list)i(recei)n(v)o(es)e(both)g
(encoded)f(and)h(unencoded)e(subject)i(headers,)h(you)e(might)h(w)o
(ant)208 3353 y(to)h(choose)f Fj(As)i(needed)p Fo(.)35
b(Using)24 b(this)g(setting,)h(Mailman)e(will)i(not)f(encode)e(ASCII)j
(pre\002x)o(es)e(when)g(the)h(rest)h(of)f(the)g(header)208
3452 y(contains)k(only)f(ASCII)i(characters,)h(b)n(ut)f(if)g(the)f
(original)g(header)g(contains)f(non-ASCII)h(characters,)h(it)h(will)f
(encode)f(the)208 3552 y(pre\002x.)50 b(This)30 b(a)n(v)n(oids)f(an)g
(ambiguity)e(in)i(the)g(standards)g(which)f(could)g(cause)h(some)g
(mail)g(readers)g(to)g(display)g(e)o(xtra,)h(or)208 3652
y(missing)20 b(spaces)g(between)f(the)i(pre\002x)e(and)h(the)g
(original)f(header)-5 b(.)0 3936 y Fk(3.4)100 b(The)28
b(Membership)i(Management)g(Categor)s(y)0 4139 y Fo(The)21
b Fj(Member)o(ship)h(Mana)o(g)o(ement)e Fo(cate)o(gory)g(is)i(unlik)o
(e)f(the)h(other)f(administrati)n(v)o(e)f(cate)o(gories.)28
b(It)22 b(doesn')o(t)f(contain)f(con\002guration)0 4239
y(v)n(ariables)h(or)g(list)h(settings.)29 b(Instead,)21
b(it)h(presents)f(a)h(number)e(of)h(pages)g(that)g(allo)n(w)h(you)e(to)
i(manage)e(the)i(membership)d(of)i(you)g(list.)0 4339
y(This)27 b(includes)g(pages)f(for)h(subscribing)e(and)i(unsubscribing)
d(members,)k(and)e(for)h(searching)f(for)g(members,)i(and)e(for)h
(changing)0 4438 y(v)n(arious)19 b(member)n(-speci\002c)g(settings.)0
4585 y(More)h(details)g(on)g(membership)e(management)g(are)i(described)
f(in)h(the)h(Membership)d(Management)g(section.)0 4870
y Fk(3.5)100 b(The)28 b(Non-digest)i(Options)e(Categor)s(y)0
5073 y Fo(Mailman)19 b(deli)n(v)o(ers)g(messages)i(to)f(users)g(via)g
(tw)o(o)g(modes.)k(List)d(members)e(can)h(elect)g(to)g(recei)n(v)o(e)f
(postings)g(in)i(b)n(undles)e(call)h Fj(dig)o(ests)0
5173 y Fo(one)i(or)h(a)g(fe)n(w)f(times)h(a)g(day)-5
b(,)23 b(or)f(the)o(y)g(can)g(recei)n(v)o(e)g(messages)h(immediately)e
(whene)n(v)o(er)g(the)h(message)h(is)g(posted)f(to)h(the)g(list.)33
b(This)0 5272 y(latter)19 b(deli)n(v)o(ery)e(mode)h(is)i(also)f(called)
f Fj(non-dig)o(est)f(delivery)p Fo(.)25 b(There)18 b(are)g(tw)o(o)h
(administrati)n(v)o(e)e(cate)o(gories)h(a)n(v)n(ailable)g(for)g
(separately)0 5372 y(controlling)g(digest)i(and)g(non-digest)e(deli)n
(v)o(ery)-5 b(.)23 b(Y)-9 b(ou)20 b(can)g(e)n(v)o(en)f(disable)h(one)f
(or)h(the)g(other)g(forms)f(of)h(deli)n(v)o(ery)f(\(b)n(ut)g(not)h
(both\).)p 0 5549 3901 4 v 0 5649 a Fg(3.3)83 b(The)24
b(Language)g(Options)f(Categor)r(y)2449 b(9)p eop end
%%Page: 10 10
TeXDict begin 10 9 bop 0 83 a Fo(Both)22 b(kinds)g(of)g(deli)n(v)o(ery)
f(can)h(ha)n(v)o(e)g(list-speci\002c)h(headers)e(and)h(footers)f(added)
g(to)i(them)f(which)g(can)g(contain)f(other)h(useful)g(infor)n(-)0
183 y(mation)c(you)h(w)o(ant)g(your)f(list)i(members)e(to)h(see.)26
b(F)o(or)18 b(e)o(xample,)g(you)g(can)h(include)g(instructions)f(for)g
(unsubscribing,)f(or)i(a)g(url)g(to)h(the)0 282 y(lists)i(digest,)d(or)
h(an)o(y)g(other)f(information.)0 429 y(Non-digest)28
b(deli)n(v)o(eries)h(can)h(also)g(be)f Fj(per)o(sonalized)g
Fo(which)g(means)h(certain)f(parts)h(of)f(the)h(message)g(can)f
(contain)g(information)0 529 y(tailored)c(to)g(the)h(member)e(recei)n
(ving)g(the)h(message.)40 b(F)o(or)25 b(e)o(xample,)h(the)f
Fh(T)-9 b(o:)35 b Fo(header)24 b(will)j(contain)d(the)h(address)g(of)h
(the)f(member)0 628 y(when)c(deli)n(v)o(eries)f(are)i(personalized.)k
(F)o(ooters)21 b(and)g(headers)g(can)g(contain)f(personalized)g
(information)f(as)j(well,)g(such)f(as)h(a)g(link)f(to)0
728 y(the)f(indi)n(vidual)f(user')-5 b(s)20 b(options)f(page.)0
875 y(In)33 b(addition,)j(personalized)31 b(messages)j(will)h(contain)d
(e)o(xtra)h(information)e(that)j(Mailman)f(can)g(use)h(to)g
(unambiguously)c(track)0 975 y(bounces)c(from)g(members.)45
b(Ordinarily)-5 b(,)27 b(Mailman)f(does)h(some)g(pattern)g(recognition)
e(on)h(bounce)g(messages)h(to)h(determine)d(list)0 1074
y(members)18 b(whose)g(addresses)g(are)h(no)f(longer)g(v)n(alid,)g(b)n
(ut)h(because)f(of)g(the)h(v)n(agaries)e(of)i(mail)f(systems,)i(and)e
(the)h(countless)f(forw)o(ards)0 1174 y(people)23 b(can)h(put)g(in)g
(place,)h(it')-5 b(s)25 b(often)e(the)h(case)h(that)f(bounce)e
(messages)j(don')o(t)d(contain)h(an)o(y)g(useful)h(information)e(in)i
(them.)36 b(Per)n(-)0 1273 y(sonalized)25 b(messages)i(a)n(v)n(oid)f
(this)g(problem)f(by)h(encoding)e(information)g(in)i(certain)g(headers)
f(that)i(unambiguously)22 b(identify)k(the)0 1373 y(recipient)19
b(of)h(a)h(message.)k(If)20 b(that)g(message)g(bounces,)e(Mailman)i
(will)h(kno)n(w)e(e)o(xactly)g(which)h(member)f(it)i(w)o(as)g(intended)
d(for)-5 b(.)0 1520 y(Note)21 b(that)g(because)g(personalization)e
(requires)h(e)o(xtra)h(system)g(resources,)f(it)i(must)f(be)g(enabled)f
(by)h(the)g(site)h(administrator)e(before)0 1620 y(you)f(can)h(choose)g
(it.)0 1766 y(Here)g(are)g(the)g(v)n(ariables)g(which)f(control)g
(non-digest)g(deli)n(v)o(ery:)0 1996 y Fl(nondigestable)41
b Fo(This)29 b(option)f(controls)g(whether)g(members)h(can)g(recei)n(v)
o(e)f(immediate)g(deli)n(v)o(ery)g(or)g(not.)52 b(If)29
b(not,)i(the)o(y)e(will)h(be)208 2096 y(forced)18 b(to)j(recei)n(v)o(e)
e(messages)h(in)g(digests.)26 b(Y)-9 b(ou)19 b(can')o(t)g(disable)h
(non-digest)f(deli)n(v)o(ery)f(if)j(digests)f(are)g(already)f
(disabled.)0 2262 y Fl(personalize)41 b Fo(This)20 b(option)f(turns)h
(on)g(message)g(personalization.)0 2428 y Fl(msg)p 148
2428 46 4 v 51 w(header)41 b Fo(This)19 b(te)o(xt)g(box)g(lets)h(you)f
(enter)g(information)e(that)i(will)h(be)g(included)e(in)h(the)h(header)
e(of)h(e)n(v)o(ery)f(non-digest)g(message)208 2528 y(sent)i(through)e
(the)i(list.)208 2660 y(See)h(belo)n(w)f(for)g(more)g(information)e(on)
i(what)h(can)g(go)f(in)h(the)f(headers)g(and)g(footers.)26
b(If)21 b(you)e(lea)n(v)o(e)i(this)g(te)o(xt)g(box)f(empty)-5
b(,)19 b(no)208 2760 y(header)g(will)h(be)h(added.)0
2926 y Fl(msg)p 148 2926 V 51 w(f)n(ooter)39 b Fo(Just)19
b(lik)o(e)f(with)g(the)g(header)m(,)f(you)g(can)h(add)f(a)h(footer)f
(to)h(e)n(v)o(ery)f(message.)24 b(The)18 b(same)g(rules)g(apply)f(to)h
(footers)f(as)i(apply)208 3026 y(to)h(headers.)0 3256
y(Headers)26 b(and)h(footers)e(can)i(contain)f(an)o(y)g(te)o(xt)g(you)g
(w)o(ant.)45 b(F)o(or)26 b(non-English)f(lists,)k(the)e(headers)f(and)g
(footers)g(can)h(contain)e(an)o(y)0 3355 y(character)g(in)h(the)g
(character)e(set)j(of)f(the)g(list')-5 b(s)27 b(preferred)d(language.)
40 b(The)26 b(headers)f(and)g(footers)h(can)f(also)i(contain)d
Fj(substitution)0 3455 y(variables)f Fo(which)h(Mailman)f(will)h
(\002ll)h(in)f(with)g(information)d(tak)o(en)i(from)g(the)h(mailing)f
(list.)36 b(These)24 b(substitutions)f(are)h(in)g(Python)0
3555 y(string)f(interpolation)e(format,)h(where)h(something)e(lik)o(e)j
Ff(\045\(list)p 1976 3555 V 49 w(name\)s)f Fo(is)h(substituted)e(with)i
(he)f(name)f(of)h(the)g(mailing)g(list.)0 3654 y(Note)d(that)g(the)h
(trailing)e(`)p Ff(s)p Fo(')h(is)h(required)1191 3624
y Fe(2)1222 3654 y Fo(.)0 3801 y(F)o(or)f(e)o(xample,)e(a)j(footer)e
(containing)f(the)i(follo)n(wing)f(te)o(xt:)236 4081
y Fb(This)44 b(is)h(the)f(\\\045\(list_name\)s)f(mailing)g(list)236
4172 y(Description:)g(\\\045\(description\)s)0 4319 y
Fo(might)20 b(get)g(attached)f(to)h(postings)g(lik)o(e)g(so:)236
4599 y Fb(This)44 b(is)h(the)f(Example)g(mailing)g(list)236
4690 y(Description:)f(An)i(example)e(of)i(Mailman)e(mailing)h(lists)0
4837 y Fo(Here)20 b(is)h(the)f(list)i(of)e(substitution)f(v)n(ariables)
g(a)n(v)n(ailable)h(for)g(your)f(headers)g(and)g(footers:)0
5067 y Fl(r)o(eal)p 143 5067 V 49 w(name)42 b Fo(This)20
b(is)h(the)f(v)n(alue)g(of)g(the)g Ff(real)p 1405 5067
V 50 w(name)g Fo(con\002guration)d(v)n(ariable)i(in)i(the)f(General)g
(options)f(cate)o(gory)-5 b(.)p 0 5138 1560 4 v 90 5193
a Fd(2)120 5217 y Fc(The)15 b(site)h(administrator)i(can)e(con\002gure)
g(lists)g(to)g(use)f(a)g(simpler)h(interpolation)k(format,)c(where)g
Fa($list)p 2581 5217 37 4 v 39 w(name)f Fc(or)g Fa(${list)p
3105 5217 V 39 w(name})f Fc(w)o(ould)j(be)e(substituted)0
5296 y(with)j(the)f(mailing)i(list')l(s)f(name.)j(Ask)c(your)g(site)h
(administrator)i(if)d(the')m(v)o(e)h(con\002gured)h(your)e(list)h(this)
g(w)o(ay)l(.)p 0 5549 3901 4 v 0 5649 a Fg(10)2612 b(3)84
b(The)23 b(List)g(Con\002gur)o(ation)h(P)m(ages)p eop
end
%%Page: 11 11
TeXDict begin 11 10 bop 0 83 a Fl(list)p 111 83 46 4
v 51 w(name)41 b Fo(This)20 b(is)h(the)g(canonical)e(name)g(of)h(the)g
(mailing)g(list.)26 b(In)20 b(other)f(w)o(ords)h(it')-5
b(s)21 b(the)f(posting)g(address)f(of)h(the)g(list)3529
53 y Fe(3)3563 83 y Fo(.)0 249 y Fl(host)p 153 249 V
50 w(name)41 b Fo(This)21 b(is)g(the)f(domain)f(name)h(part)f(of)h(the)
h(email)f(address)f(for)h(this)h(list.)0 415 y Fl(web)p
148 415 V 51 w(page)p 366 415 V 49 w(url)42 b Fo(This)62
b(is)g(the)g(base)g(url)f(for)g(contacting)f(the)i(list)h(via)e(the)h
(web)m(.)149 b(It)62 b(can)f(be)h(appended)d(with)208
515 y Ff(listinfo/\045\(list)p 963 515 V 47 w(name\)s)20
b Fo(to)g(yield)g(the)g(general)f(list)j(information)c(page)h(for)h
(the)g(mailing)f(list.)0 681 y Fl(description)41 b Fo(The)20
b(brief)g(description)e(of)i(the)g(mailing)g(list.)0
847 y Fl(inf)n(o)41 b Fo(This)20 b(is)h(the)g(full)f(description)e(of)i
(the)g(mailing)g(list.)0 1013 y Fl(cgiext)40 b Fo(This)23
b(is)h(the)f(e)o(xtension)e(added)h(to)h(CGI)h(scripts.)33
b(It)23 b(might)f(be)h(the)g(empty)f(string,)h Ff(.cgi)p
Fo(,)g(or)g(something)f(else)h(depending)208 1112 y(on)c(ho)n(w)h(your)
f(site)i(is)g(con\002gured.)0 1342 y(Note)k(that)g Ff(real)p
542 1342 V 50 w(name)p Fo(,)h Ff(host)p 1039 1342 V 50
w(name)p Fo(,)g Ff(description)p Fo(,)f(and)g Ff(info)g
Fo(substitution)f(v)n(ariables)g(tak)o(e)i(their)f(v)n(alues)f(from)h
(the)0 1442 y(list)c(con\002guration)d(v)n(ariables)h(of)h(the)g(same)h
(name.)0 1589 y(When)f(personalization)e(is)j(enabled,)e(the)h(follo)n
(wing)f(substitution)g(v)n(ariables)g(are)h(also)h(a)n(v)n(ailable:)0
1819 y Fl(user)p 157 1819 V 51 w(addr)o(ess)41 b Fo(The)20
b(address)g(of)f(the)i(recipient)e(of)h(the)g(message,)g(coerced)f(to)h
(lo)n(wer)g(case.)0 1985 y Fl(user)p 157 1985 V 51 w(deli)o(v)o(er)o
(ed)p 533 1985 V 50 w(to)40 b Fo(The)20 b(case-preserv)o(ed)e(address)i
(that)g(the)g(user)g(subscribed)f(to)h(the)h(mailing)e(list)i(with)3175
1955 y Fe(4)3208 1985 y Fo(.)0 2151 y Fl(user)p 157 2151
V 51 w(passw)o(ord)41 b Fo(The)20 b(user')-5 b(s)21 b(passw)o(ord,)e
(in)h(clear)g(te)o(xt.)0 2317 y Fl(user)p 157 2317 V
51 w(name)41 b Fo(The)20 b(user')-5 b(s)20 b(full)g(name.)0
2483 y Fl(user)p 157 2483 V 51 w(optionsurl)41 b Fo(The)20
b(url)g(to)g(the)g(user')-5 b(s)21 b(personal)e(options)g(page.)0
2768 y Fk(3.6)100 b(The)28 b(Digest)g(Options)g(Categor)s(y)0
2971 y Fo(Digest)d(deli)n(v)o(ery)d(is)j(a)g(w)o(ay)f(to)g(b)n(undle)f
(man)o(y)g(articles)i(together)e(into)h(one)f(package,)h(which)f(can)h
(be)g(deli)n(v)o(ered)f(once)g(per)h(day)g(\(if)0 3070
y(there)e(were)g(an)o(y)g(posted)g(articles\),)g(or)g(whene)n(v)o(er)f
(the)h(package)f(is)i(bigger)e(than)h(a)h(speci\002ed)f(limit.)32
b(Some)22 b(users)h(may)f(prefer)f(this)0 3170 y(style)g(of)e(deli)n(v)
o(ery)g(for)h(higher)e(traf)n(\002c)i(lists)i(since)e(the)o(y)g(will)h
(recei)n(v)o(e)e(fe)n(wer)g(messages.)0 3317 y(Mailman)k(supports)f(tw)
o(o)i(standard)e(digest)i(formats,)f(and)g(if)g(digests)h(are)f
(enabled,)g(users)h(can)f(select)h(which)f(of)g(the)h(tw)o(o)f(formats)
0 3417 y(the)o(y)g(recei)n(v)o(e.)33 b(One)23 b(is)h(MIME)f(digests,)h
(where)f(each)f(message)i(is)g(an)f(attachment)f(inside)h(a)h
Fh(m)o(ultipar)s(t/digest)p Fo(.)31 b(This)23 b(format)f(also)0
3516 y(contains)16 b(a)h(summary)e(table)i(of)f(contents,)g(and)g(of)h
(course)f(the)g(an)h(optional)e(header)g(and)h(footer)m(,)g(and)g(it)h
(retains)g(most)g(of)f(the)g(headers)0 3616 y(of)k(the)g(original)f
(messages.)0 3763 y(The)30 b(second)e(type)i(is)h(called)e(\223plainte)
o(xt\224)g(digests)h(because)f(the)o(y)g(are)h(readable)f(in)h(mail)g
(readers)f(that)h(don')o(t)e(support)g(MIME.)0 3862 y(Actually)-5
b(,)21 b(the)o(y)g(adhere)g(to)h(the)f(RFC)j(1153)c(digest)i(standard.)
28 b(The)21 b(retain)h(some,)g(b)n(ut)f(not)h(all)g(of)g(the)f
(original)g(messages,)h(b)n(ut)g(can)0 3962 y(also)f(include)e(a)h
(summary)f(and)h(headers)f(and)h(footers.)0 4109 y(Lik)o(e)g
(non-digest)e(deli)n(v)o(ery)-5 b(,)18 b(you)h(can)h(enable)f(or)h
(disable)f(digest)h(deli)n(v)o(ery)-5 b(,)18 b(b)n(ut)i(you)f(cannot)g
(disable)h(both)f(types)h(of)f(deli)n(v)o(ery)-5 b(.)23
b(Y)-9 b(ou)0 4208 y(can)17 b(specify)g(dif)n(ferent)f(headers)h(and)g
(footers)g(for)g(digest)g(and)h(non-digest)d(deli)n(v)o(eries.)23
b(Y)-9 b(ou)17 b(cannot)g(personalize)f(digest)i(deli)n(v)o(eries.)0
4355 y(As)33 b(list)g(administrator)m(,)f(you)f(may)h(w)o(ant)g(to)g
(send)f(an)h(ur)o(gent)e(message)i(to)g(all)g(list)h(members,)h
(bypassing)c(the)i(normal)f(digest)0 4455 y(b)n(undling.)25
b(T)-7 b(o)21 b(do)g(this,)g(send)g(the)g(message)g(with)g(a)g
Fh(Urgent:)26 b Fo(header)m(,)19 b(where)h(the)h(v)n(alue)g(of)f(the)h
(header)f(is)i(the)f(list)h(administrator')-5 b(s)0 4555
y(passw)o(ord.)41 b(Non-digest)24 b(members)g(will)j(recei)n(v)o(e)d
(the)i(message)f(lik)o(e)h(normal,)g(b)n(ut)f(digest)h(members)e(will)j
(recei)n(v)o(e)d(the)i(message)0 4654 y(immediately)417
4624 y Fe(5)448 4654 y Fo(.)0 4801 y(Here)20 b(are)g(the)g(v)n
(ariables)g(which)f(control)g(digest)h(deli)n(v)o(ery:)p
0 4872 1560 4 v 90 4928 a Fd(3)120 4951 y Fc(F)o(or)c(backw)o(ard)k
(compatibility)l(,)g(the)d(v)n(ariable)p 1215 4951 37
4 v 61 w Fa(internal)p 1576 4951 V 39 w(name)f Fc(is)h(equi)n(v)n
(alent.)90 5009 y Fd(4)120 5032 y Fc(Usually)i(it)f(mak)o(es)g(no)g
(dif)n(ference)j(which)e(of)f Fa(user)p 1370 5032 V 39
w(address)f Fc(and)h Fa(user)p 1979 5032 V 40 w(delivered)p
2379 5032 V 39 w(to)f Fc(is)h(used,)g(b)o(ut)g(it')l(s)h(important)g
(to)f(remember)h(that)g(the)o(y)g(can)0 5111 y(be)d(dif)n(ferent.)23
b(When)16 b(the)o(y')m(re)h(dif)n(ferent,)h(Mailman)f(al)o(w)o(ays)h
(uses)d(the)i(lo)n(wer)g(case)f(address)h(as)e(the)i(k)o(e)o(y)f(to)g
(the)h(member')l(s)f(subscription)i(information,)g(b)o(ut)e(it)g(al)o
(w)o(ays)0 5190 y(deli)n(v)o(ers)j(messages)f(to)f(the)h(case-preserv)o
(ed)i(v)o(ersion.)90 5248 y Fd(5)120 5271 y Fc(The)o(y')o(ll)e(also)g
(recei)n(v)o(e)h(the)f(message)g(in)f(the)h(digest.)p
0 5549 3901 4 v 0 5649 a Fg(3.6)83 b(The)24 b(Digest)f(Options)g
(Categor)r(y)2537 b(11)p eop end
%%Page: 12 12
TeXDict begin 12 11 bop 0 83 a Fl(digestable)41 b Fo(The)24
b(option)g(controls)g(whether)g(members)g(can)h(recei)n(v)o(e)e(digest)
i(deli)n(v)o(eries)f(or)h(not.)39 b(If)25 b(not,)g(the)o(y)f(will)i(be)
f(forced)e(to)208 183 y(recei)n(v)o(e)c(immediate)g(deli)n(v)o(eries.)
24 b(Y)-9 b(ou)19 b(can')o(t)h(disable)g(digests)g(if)h(non-digests)d
(are)i(already)f(disabled.)0 349 y Fl(digest)p 213 349
46 4 v 50 w(is)p 318 349 V 51 w(default)41 b Fo(Controls)24
b(which)g(style)h(of)g(deli)n(v)o(ery)e(is)i(the)g(def)o(ault)f(for)g
(ne)n(w)h(members.)37 b(Y)-9 b(ou)24 b(can)h(choose)f
Fj(Re)m(gular)f Fo(\(non-)208 448 y(digest\))c(or)h Fj(Dig)o(est)h
Fo(deli)n(v)o(ery)-5 b(.)0 614 y Fl(mime)p 203 614 V
51 w(is)p 309 614 V 51 w(default)p 610 614 V 50 w(digest)41
b Fo(If)21 b(a)h(member)e(is)i(allo)n(wed)f(to)g(choose)g(digests,)g
(this)h(v)n(ariable)e(controls)h(which)f(is)j(the)e(def)o(ault)g
(digest)208 714 y(style)f(the)o(y)g(will)h(recei)n(v)o(e.)i
Fj(Plain)d Fo(digests)g(are)h(RFC)g(1153)e(format)g(as)i(described)e
(abo)o(v)o(e.)0 880 y Fl(digest)p 213 880 V 50 w(size)p
392 880 V 51 w(thr)o(eshold)41 b Fo(Normally)-5 b(,)20
b(digest)h(members)g(get)h(at)g(least)g(one)f(message)h(per)f(day)-5
b(,)21 b(if)g(there)h(ha)n(v)o(e)f(been)g(an)o(y)f(messages)208
980 y(posted)e(to)i(the)g(list.)25 b(Ho)n(we)n(v)o(er)m(,)18
b(for)h(high)f(v)n(olume)h(lists,)i(you)d(may)h(w)o(ant)h(to)g(send)f
(out)g(digests)h(when)f(the)g(size)h(has)g(reached)e(a)208
1079 y(certain)h(threshold,)f(otherwise,)h(the)h(one)f(digest)g(the)o
(y)h(recei)n(v)o(e)e(could)h(be)h(huge.)j(This)d(v)n(ariable)f
(controls)g(the)h(size)g(threshold)208 1179 y(by)e(specifying)e(the)j
(maximum)d(digest)j(size)g(in)f(kilobytes.)24 b(Note)18
b(that)h(this)f(threshold)f(isn')o(t)h(e)o(xact.)24 b(Set)19
b(this)g(v)n(ariable)f(to)g(zero)208 1279 y(to)i(specify)f(that)i
(there)e(is)j(no)d(size)i(threshold,)e(in)h(which)g(case)g(no)g(more)f
(than)h(one)g(digest)g(will)h(be)f(sent)g(out)g(per)g(day)-5
b(.)0 1445 y Fl(digest)p 213 1445 V 50 w(send)p 424 1445
V 51 w(periodic)41 b Fo(This)32 b(v)n(ariable)e(actually)h(controls)g
(whether)f(or)h(not)h(a)f(digest)h(is)g(sent)g(daily)f(when)g(the)g
(size)h(thresh-)208 1544 y(old)45 b(has)i(not)e(yet)h(been)g(met.)102
b(If)46 b(set)h(to)f Fj(No)p Fo(,)53 b(then)46 b(digests)g(will)h(only)
e(be)h(sent)g(when)g(the)o(y)f(are)h(bigger)f(than)208
1644 y Ff(digest)p 513 1644 V 49 w(size)p 762 1644 V
50 w(threshold)p Fo(.)0 1810 y Fl(digest)p 213 1810 V
50 w(header)c Fo(This)25 b(te)o(xt)f(box)g(lets)h(you)f(enter)g
(information)e(that)j(will)g(be)g(included)e(in)i(the)f(header)g(of)g
(e)n(v)o(ery)f(digest)i(message)208 1910 y(sent)20 b(through)d(the)j
(list.)26 b(The)20 b(same)g(information)d(can)j(go)f(in)h(this)h
(header)e(as)h(can)g(go)f(in)h(the)g Ff(msg)p 3060 1910
V 50 w(header)p Fo(,)f(e)o(xcept)g(for)h(the)208 2009
y(personalization)e(v)n(ariables.)0 2175 y Fl(digest)p
213 2175 V 50 w(f)n(ooter)40 b Fo(Just)19 b(lik)o(e)g(with)f(the)h
(header)m(,)e(you)g(can)i(add)f(a)g(footer)g(to)g(e)n(v)o(ery)g
(message.)24 b(The)18 b(same)h(rules)f(apply)f(to)i(digest)f(footers)
208 2275 y(as)i(apply)g(to)g(digest)g(headers.)0 2441
y Fl(digest)p 213 2441 V 50 w(v)o(olume)p 521 2441 V
50 w(fr)o(equency)40 b Fo(Each)22 b(digest)f(is)i(numbered)c(with)j(a)g
(v)n(olume)e(and)i(an)f(issue.)30 b(This)22 b(v)n(ariable)e(controls)h
(ho)n(w)g(often)g(a)208 2540 y(ne)n(w)f(digest)g(v)n(olume)f(is)i
(sent.)k(When)20 b(the)g(digest)g(v)n(olume)g(number)e(is)j
(incremented,)d(the)i(issue)h(number)d(is)k(reset)e(to)g(1.)p
5 2707 V 51 2707 a Fl(new)p 199 2707 V 50 w(v)o(olume)41
b Fo(This)19 b(is)h(an)f(action)g(v)n(ariable,)e(which)i(forces)f(an)h
(increment)f(of)g(the)h(v)n(olume)f(number)f(as)j(soon)e(as)i(you)e
(submit)h(the)208 2806 y(form.)p 5 2972 V 51 2972 a Fl(send)p
217 2972 V 51 w(digest)p 476 2972 V 50 w(no)o(w)41 b
Fo(This)25 b(is)g(another)d(action)i(v)n(ariable.)35
b(Select)25 b Fj(Y)-8 b(es)p Fo(,)26 b(submit)e(the)g(form,)g(and)f
(the)i(current)d(digest)i(is)i(packaged)208 3072 y(up)19
b(and)h(sent)g(to)h(digest)f(members,)f(re)o(gardless)f(of)i(size)h
(\(well,)f(there)g(has)g(to)h(be)f(at)h(least)g(one)e(message)h(in)h
(the)f(digest\).)0 3357 y Fk(3.7)100 b(The)28 b(Pr)q(iv)n(acy)h
(Options)f(Categor)s(y)0 3560 y Fo(The)21 b(Pri)n(v)n(ac)o(y)e(cate)o
(gory)g(lets)j(you)e(control)g(ho)n(w)g(much)g(of)h(the)f(list')-5
b(s)23 b(information)18 b(is)k(public,)e(as)i(well)f(as)h(who)e(can)h
(send)f(messages)0 3659 y(to)e(your)f(list.)25 b(It)19
b(also)f(contains)f(some)h(spam)g(detection)f(\002lters.)25
b(Note)18 b(that)g(this)h(section)f(is)h(not)e(used)h(to)g(control)f
(whether)g(your)g(list')-5 b(s)0 3759 y(archi)n(v)o(es)19
b(are)h(public)f(or)h(pri)n(v)n(ate;)g(for)f(that,)h(use)h(the)f
Fl(??)g Fo(cate)o(gory)-5 b(.)0 3906 y(There)19 b(are)h(four)g
(sub-cate)o(gories:)125 4119 y Fi(\017)41 b Fo(Subscription)18
b(rules)i(\226)g(i.e.)26 b(the)20 b(rules)g(for)g(joining)f(and)g(lea)n
(ving)h(your)f(mailing)g(list)125 4285 y Fi(\017)41 b
Fo(Sender)19 b(\002lters)i(\226)f(the)g(rules)g(for)g(who)g(may)f(post)
i(messages)f(to)g(your)f(list)125 4451 y Fi(\017)41 b
Fo(Recipient)20 b(\002lters)g(\226)h(moderation)d(rules)i(based)g(on)f
(the)i(recipient)e(of)h(the)g(message)125 4617 y Fi(\017)41
b Fo(Spam)19 b(\002lters)i(\226)g(some)f(re)o(gular)e(e)o(xpression)h
(based)h(rules)g(for)f(header)g(matching)0 4830 y(The)25
b(sender)m(,)h(recipient,)g(and)g(spam)f(\002ltering)g(rules)h(are)g
(part)f(of)h(the)g(general)e(list)j(moderation)d(features)h(of)g
(Mailman.)42 b(When)25 b(a)0 4930 y(message)c(is)h(posted)e(to)h(the)g
(list,)i(it)e(is)h(matched)e(against)h(a)g(number)e(of)i(criteria,)g
(the)g(outcome)e(of)i(which)g(determines)f(whether)g(the)0
5030 y(message)g(is)h(re\003ected)f(to)g(the)g(membership)f(or)g(not.)
25 b(In)20 b(general,)f(the)h(outcome)f(is)i(one)e(of)h(four)f(states:)
125 5260 y Fi(\017)41 b Fo(Appro)o(v)o(ed)17 b(or)j(Accepted)f(\226)h
(the)g(message)g(may)g(be)g(sent)h(on)f(to)g(the)g(members)f(of)h(the)g
(mailing)g(list.)p 0 5549 3901 4 v 0 5649 a Fg(12)2612
b(3)84 b(The)23 b(List)g(Con\002gur)o(ation)h(P)m(ages)p
eop end
%%Page: 13 13
TeXDict begin 13 12 bop 125 83 a Fi(\017)41 b Fo(Hold)28
b(\226)h(the)g(message)g(will)h(be)e(held)h(for)f(moderator)f(appro)o
(v)n(al.)49 b(The)28 b(list)i(o)n(wners)f(and)f(moderators)f(will)j
(then)e(ha)n(v)o(e)g(to)208 183 y(e)o(xplicitly)19 b(appro)o(v)o(e)e
(the)k(message)f(before)e(the)j(list)g(members)e(will)i(see)g(it.)125
349 y Fi(\017)41 b Fo(Reject)32 b(\226)f(the)g(message)g(is)i(bounced)c
(back)h(to)i(the)f(original)f(sender)m(,)j(often)d(with)i(a)g(notice)e
(containing)g(the)h(reason)g(the)208 448 y(message)20
b(w)o(as)h(rejected.)j(The)c(list)h(members)e(ne)n(v)o(er)g(see)i
(rejected)e(messages.)125 614 y Fi(\017)41 b Fo(Discard)20
b(\226)g(the)g(message)g(is)h(simply)f(thro)n(wn)f(a)o(w)o(ay)h
(without)f(further)g(processing.)0 844 y(Man)o(y)i(of)g(the)h(\002elds)
g(in)g(this)h(section)e(are)h(te)o(xt)g(box)o(es)e(accepting)h
(addresses,)g(one)h(per)f(line.)30 b(Unless)22 b(otherwise)f(noted,)g
(these)h(also)0 944 y(accept)e(re)o(gular)e(e)o(xpressions)h(which)h
(will)h(be)f(matched)f(against)h(an)g(address,)f(if)i(the)f(line)g(be)o
(gins)f(with)i(a)3115 925 y(\210)3115 944 y(\(caret\))f(character)-5
b(.)0 1212 y Fg(Subscr)q(iption)24 b(r)q(ules)0 1415
y Fo(This)c(subcate)o(gory)d(controls)h(the)i(rules)g(for)f(e)o
(xposing)e(the)j(e)o(xistance)f(of)g(this)h(list,)h(and)e(for)g(what)g
(ne)n(w)h(members)e(must)i(do)f(in)h(order)0 1515 y(to)g(subscribe)g
(to)g(the)g(list.)0 1745 y Fl(adv)o(ertised)41 b Fo(This)19
b(option)g(controls)f(whether)g(this)i(list)h(will)f(sho)n(w)f(up)h(in)
f(the)h(list)g(o)o(v)o(ervie)n(w)e(for)g(the)i(site.)25
b(Normally)-5 b(,)18 b(an)i(o)o(v)o(ervie)n(w)208 1844
y(contains)j(the)h(name)f(and)g(short)h(description)e(of)i(e)n(v)o(ery)
f(mailing)g(list)i(in)f(the)g(virtual)f(domain.)35 b(By)24
b(setting)g(this)h(v)n(ariable)d(to)208 1944 y Fj(No)p
Fo(,)g(it)g(will)h(not)e(sho)n(w)g(up)h(in)g(this)g(o)o(v)o(ervie)n(w)
-5 b(,)19 b(nor)i(will)h(it)h(sho)n(w)e(up)h(in)f(the)h(administrati)n
(v)o(e)e(o)o(v)o(ervie)n(w)-5 b(.)27 b(The)21 b(only)g(w)o(ay)h(then)
208 2043 y(to)e(\002nd)g(the)g(list)h(is)g(to)g(guess)f(\(or)g(kno)n
(w!\))j(its)e(name.)0 2210 y Fl(subscribe)p 341 2210
46 4 v 51 w(policy)41 b Fo(This)23 b(option)f(controls)g(the)h(steps)g
(that)g(a)g(ne)n(w)g(member)e(must)i(tak)o(e)g(to)g(join)g(the)g(list.)
34 b(The)22 b(a)n(v)n(ailable)h(options)208 2309 y(may)c(dif)n(fer)g
(based)h(on)g(some)g(def)o(aults)g(that)g(the)g(site)h(administrator)e
(chooses.)24 b(The)o(y)19 b(are:)307 2492 y Fi(\017)41
b Fo(None)23 b(\226)h(No)g(v)o(eri\002cation)e(is)i(done)f(on)g(the)h
(subscribing)e(member)-5 b(.)34 b(This)24 b(is)h(also)e(called)h
Fj(open)f(subscriptions)g Fo(and)g(is)390 2591 y(generally)f(disabled)g
(by)h(def)o(ault.)33 b(The)22 b(site)i(administrator)e(must)h(allo)n(w)
g(list)h(admins)e(to)i(choose)e(this)h(option;)h(if)f(not,)390
2691 y(this)e(option)e(will)i(not)f(be)g(presented)f(to)h(you.)307
2824 y Fi(\017)41 b Fo(Con\002rm)21 b(\226)h(An)f(email)h
(con\002rmation)d(step)j(is)g(required)e(before)g(the)h(address)g(is)i
(added)d(to)h(the)h(list.)30 b(When)21 b(a)h(member)390
2924 y(requests)15 b(subscription,)g(either)g(via)g(the)g(web)h(page)e
(or)i(by)e(sending)h(a)g(message)h(to)f Fj(yourlist)q
Ff(-join@example.com)p Fo(,)390 3023 y(Mailman)h(will)g(send)g(a)h
(con\002rmation)d(message)i(to)g(the)g(requesting)e(address.)23
b(This)17 b(mail-back)d(con\002rmation)g(contains)390
3123 y(a)19 b(unique)e(identi\002er)m(,)h(which)g(the)h(requester)e
(can)h(present)g(to)h(Mailman)f(in)h(order)e(to)i(con\002rm)e(their)i
(subscription.)j(This)390 3222 y(can)i(be)f(done)g(either)g(by)g
(replying)f(to)h(the)h(mail-back,)f(or)g(by)g(visiting)g(the)h(url)f
(in)h(the)g(mail-back)e(message.)35 b(The)23 b(url)390
3322 y(points)d(to)g(a)h(page)e(that)i(lets)g(the)f(user)g(either)g
(discard)f(or)h(con\002rm)f(their)h(request.)307 3455
y Fi(\017)41 b Fo(Require)27 b(appro)o(v)n(al)f(\226)h(All)i
(subscription)d(requests)h(are)h(held)f(for)g(appro)o(v)n(al)e(of)i
(the)h(list)h(moderator)-5 b(.)45 b(No)28 b(mail-back)390
3554 y(con\002rmation)18 b(is)j(sent,)g(b)n(ut)f(the)g(list)h(admins)f
(will)h(recie)n(v)o(e)e(a)i(message)f(indicating)e(that)j(appro)o(v)n
(al)d(is)j(pending.)307 3687 y Fi(\017)41 b Fo(Con\002rm)18
b(and)g(appro)o(v)o(e)e(\226)i(Here,)g(a)h(mail-back)e(notice)h(must)g
(\002rst)i(be)e(con\002rmed)f(by)g(the)i(requester)-5
b(.)23 b(Once)c(con\002rmed,)390 3787 y(the)26 b(list)h(moderator)c
(must)j(then)f(appro)o(v)o(e)e(the)j(request.)40 b(This)26
b(is)h(the)f(most)f(secure)g(method)g(for)g(users)h(to)f(subscribe)390
3887 y(since)c(it)f(both)g(v)o(eri\002es)g(the)g(requesting)f(address,)
g(and)h(forces)f(the)i(list)g(moderators)d(to)i(appro)o(v)o(e)e(the)i
(request.)0 4069 y Fl(unsubscribe)p 433 4069 V 52 w(policy)40
b Fo(Speci\002es)28 b(whether)e(the)h(list)h(moderator')-5
b(s)25 b(appro)o(v)n(al)g(is)j(required)d(for)i(unsubscription)d
(requests.)45 b Fj(No)28 b Fo(is)208 4169 y(highly)20
b(recommended,)e(since)k(it)g(is)h(e)o(xceedingly)c(impolite)i(to)g
(not)g(allo)n(w)h(people)e(to)i(lea)n(v)o(e)f(a)h(mailing)f(list)i
(whene)n(v)o(er)c(the)o(y)208 4268 y(w)o(ant)25 b(\(i.e.)41
b(opt-out\).)f Fj(Y)-8 b(es)27 b Fo(is)f(useful)f(in)h(some)f
(specialized)g(conte)o(xts;)j(e.g.)41 b(you)24 b(may)i(not)f(w)o(ant)h
(to)f(allo)n(w)h(emplo)o(yees)e(to)208 4368 y(unsubscribe)18
b(from)h(the)h(compan)o(y)e(ne)n(wsletter)-5 b(.)0 4534
y Fl(ban)p 139 4534 V 50 w(list)42 b Fo(This)19 b(contains)f(a)i(list)g
(of)e(addresses)h(\(or)f(re)o(gular)g(e)o(xpressiosn\),)f(one)h(per)h
(line,)g(that)g(are)g(banned)e(from)h(e)n(v)o(er)g(subscribing)208
4634 y(to)f(your)f(mailing)g(list.)25 b(If)17 b(a)h(match)f(occurs)f
(during)g(the)h(subscription)f(process,)h(the)g(request)g(will)h(be)f
(automatically)e(rejected,)208 4733 y(and)28 b(the)h(requester)f(will)i
(get)g(a)f(rejection)g(notice.)51 b(Y)-9 b(ou)29 b(can)g(use)g(this)h
(to)f(permanently)e(ban)i(troublesome)e(posters)i(to)g(a)208
4833 y(members-only)17 b(list.)0 4999 y Fl(pri)o(v)o(ate)p
258 4999 V 50 w(r)o(oster)40 b Fo(This)19 b(speci\002es)g(who)f(is)i
(allo)n(wed)e(to)g(vie)n(w)h(the)g(roster)f(of)g(member)g(addresses.)24
b(If)18 b(you)g(choose)g Fj(Anyone)p Fo(,)f(then)i(the)208
5099 y(list)25 b(membership)e(is)j(completely)d(public.)38
b(Y)-9 b(ou)24 b(can)h(limit)g(e)o(xposure)e(of)i(the)f(roster)h(to)g
(just)g(list)h(members,)f(or)f(just)i(to)f(the)208 5198
y(list)19 b(administrators.)k(In)c(the)g(former)e(case,)i(a)g(user)g
(must)g(enter)f(a)h(v)n(alid)f(member')-5 b(s)18 b(address)g(and)g
(passw)o(ord)g(before)g(the)o(y)g(can)208 5298 y(vie)n(w)k(the)g
(roster)-5 b(.)32 b(In)23 b(the)f(latter)h(case,)g(a)g(list)h
(administrator')-5 b(s)21 b(passw)o(ord)h(must)g(be)h(enter;)g(if)g(a)g
(matching)e(admin)g(passw)o(ord)208 5398 y(is)g(entered,)e(address)g
(\002eld)i(is)g(ignored.)p 0 5549 3901 4 v 0 5649 a Fg(3.7)83
b(The)24 b(Pr)q(iv)n(acy)e(Options)h(Categor)r(y)2501
b(13)p eop end
%%Page: 14 14
TeXDict begin 14 13 bop 0 83 a Fl(obscur)o(e)p 281 83
46 4 v 50 w(addr)o(esses)41 b Fo(Controls)32 b(whether)e(some)i(simple)
g(obfuscation)e(of)h(addresses)h(is)h(used)e(when)h(member)e(addresses)
i(are)208 183 y(included)16 b(on)i(web)h(pages.)k(This)c(should)e
(reduce)h(the)g(opportunity)d(for)j(email)g(address)g(harv)o(esting)f
(by)h(spammers,)f(although)208 282 y(it)j(probably)e(doesn')o(t)h
(eliminate)h(it.)0 551 y Fg(Sender)k(\002lters)0 753
y Fo(When)i(a)h(message)f(is)h(posted)e(to)h(the)h(list,)h(a)f(series)f
(of)g(moderation)e(criteria)i(are)g(applied)f(to)i(determine)d(the)i
(disposition)g(of)g(the)0 853 y(message.)f(This)20 b(section)g
(contains)g(the)g(modeation)e(controls)h(for)h(postings)f(from)h(both)f
(members)g(and)h(non-members.)0 1083 y Fl(default)p 255
1083 V 50 w(member)p 600 1083 V 50 w(moderation)40 b
Fo(Member)20 b(postings)g(are)h(held)f(for)h(moderation)d(if)j(their)g
Fj(moder)o(ation)e(\003a)o(g)h Fo(is)i(turned)d(on.)27
b(Note)208 1183 y(that)20 b(only)f(the)h(list)i(administrators)d(can)g
(change)g(the)i(v)n(alue)e(of)h(a)h(member')-5 b(s)19
b(moderation)f(\003ag.)208 1315 y(Y)-9 b(ou)17 b(can)h(control)f
(whether)g(ne)n(w)h(members)f(get)h(their)g(moderation)e(\003ag)i
(turned)f(on)h(or)g(of)n(f)f(by)h(def)o(ault)f(when)h(the)o(y)f
(subscribe)208 1415 y(to)j(the)h(list.)26 b(By)21 b(turning)e(this)i
(\003ag)f(of)n(f)g(by)g(def)o(ault,)f(postings)h(by)g(members)f(will)i
(be)g(allo)n(wed)e(without)h(further)f(interv)o(ention)208
1515 y(\(barring)28 b(other)j(restrictions)f(such)h(as)g(size)h(or)e
(implicit)h(recipient)f(lists)i(\226)f(see)h(belo)n(w\).)56
b(By)31 b(turning)f(the)h(\003ag)g(on,)h(you)208 1614
y(can)27 b(quarantine)e(ne)n(w)j(member)e(postings)h(to)h(mak)o(e)f
(sure)g(that)h(the)o(y)e(meet)i(your)e(criteria)h(for)g(netiquette,)h
(topicality)-5 b(,)28 b(etc.)208 1714 y(Once)f(you)f(determine)g(that)h
(the)h(ne)n(w)f(member)f(understands)f(the)i(community')-5
b(s)26 b(posting)g(rules,)j(you)d(can)i(turn)e(of)n(f)h(their)208
1814 y(moderation)17 b(\003ag)k(and)e(let)i(their)f(postings)g(go)f
(through)f(unstopped.)208 1946 y(E-ne)n(wsletter)69 b(style)i(lists)h
(can)f(also)g(be)f(set)i(up)e(by)g(using)g(the)h(moderation)d(\003ag.)
177 b(By)71 b(setting)g(the)208 2046 y Ff(member)p 513
2046 V 49 w(moderation)p 1062 2046 V 49 w(action)21 b
Fo(to)h Fj(Reject)p Fo(,)g(and)f(by)h(turning)e(of)n(f)h(the)h
(moderation)e(\003ag)h(for)h(just)g(the)g(fe)n(w)g(appro)o(v)o(ed)208
2146 y(senders,)g(your)e(list)k(will)f(operate)e(in)h(essentially)g(a)h
(one-w)o(ay)e(direction.)29 b(Note)22 b(that)h(you')l(d)d(also)i(need)g
(to)g(reject)g(or)g(discard)208 2245 y(postings)d(from)g(non-members.)0
2411 y Fl(member)p 300 2411 V 51 w(moderation)p 763 2411
V 49 w(action)40 b Fo(This)27 b(is)h(the)f(action)f(to)h(tak)o(e)g(for)
g(postings)f(from)g(a)h(member)f(who')-5 b(s)27 b(moderation)d(\003ag)j
(is)h(set.)208 2511 y(F)o(or)19 b(typical)h(discussion)f(lists,)i(you')
o(ll)e(lik)o(ely)h(set)g(this)h(to)f Fj(Hold)f Fo(so)i(that)f(the)g
(list)h(moderator)c(will)k(get)f(a)g(chance)f(to)h(manually)208
2611 y(appro)o(v)o(e,)f(reject,)j(or)g(discard)f(the)h(message.)30
b(F)o(or)22 b(e-ne)n(wsletter)f(and)g(announcement)e(lists,)24
b(you)d(might)g(w)o(ant)h(to)g(set)h(this)f(to)208 2710
y Fj(Reject)e Fo(or)g Fj(Discar)m(d)p Fo(.)208 2843 y(Note)27
b(that)h(when)f(a)h(moderated)e(member)h(posts)h(to)g(your)e(list,)31
b(and)c(the)h Ff(member)p 2711 2843 V 49 w(moderation)p
3260 2843 V 49 w(action)f Fo(is)i(set)f(to)208 2943 y
Fj(Hold)p Fo(,)20 b(the)h(message)f(will)i(appear)d(on)h(the)h
(administrati)n(v)o(e)e(requests)i(page.)26 b(When)20
b(you)g(dispose)g(of)h(the)g(message,)f(you)g(will)208
3042 y(be)26 b(gi)n(v)o(en)f(an)h(opportunity)d(to)k(clear)f(the)g
(moderation)e(\003ag)i(at)h(the)f(same)h(time.)43 b(If)26
b(you')l(re)f(quarantining)e(ne)n(w)j(posts,)i(this)208
3142 y(mak)o(es)20 b(it)h(v)o(ery)e(con)m(v)o(enient)e(to)j(both)g
(appro)o(v)o(e)d(a)k(ne)n(w)f(member')-5 b(s)19 b(post)h(and)g
(de-moderate)e(them)i(at)g(the)g(same)h(time.)0 3308
y Fl(member)p 300 3308 V 51 w(moderation)p 763 3308 V
49 w(notice)40 b Fo(When)163 b(a)g(member')-5 b(s)161
b(moderation)f(\003ag)j(is)g(turned)e(on)h(and)208 3408
y Ff(member)p 513 3408 V 49 w(moderation)p 1062 3408
V 49 w(action)19 b Fo(is)j Fj(Reject)p Fo(,)e(this)g(v)n(ariable)f
(contains)h(the)g(te)o(xt)g(sent)h(in)f(the)g(rejection)f(notice.)0
3638 y(The)f(ne)o(xt)h(batch)f(of)g(v)n(ariables)g(controls)g(what)h
(happens)e(when)i(non-members)d(post)i(messages)h(to)g(the)g(list.)26
b(Each)18 b(of)h(these)g(accepts)0 3737 y(one)j(email)g(address)g(per)h
(line;)g(re)o(gular)e(e)o(xpressions)g(are)i(allo)n(wed)f(if)g(the)h
(line)g(starts)g(with)g(the)2837 3718 y(\210)2837 3737
y(\(caret\))f(character)-5 b(.)31 b(These)22 b(address)0
3837 y(lists)k(are)f(al)o(w)o(ays)h(consulted)e(in)h(the)g(order)e(in)j
(which)e(the)o(y')l(re)f(presented)h(on)h(this)g(page)f(\(i.e.)40
b(accepts)24 b(\002rst,)j(follo)n(wed)d(by)g(holds,)0
3936 y(rejections,)19 b(and)h(discards\).)0 4166 y Fl(accept)p
232 4166 V 50 w(these)p 462 4166 V 50 w(nonmembers)42
b Fo(Postings)19 b(from)e(non-members)f(whose)j(addresses)f(match)g
(this)i(list)g(are)e(accepted,)g(barring)f(other)208
4266 y(list)27 b(restrictions)f(due)g(to)h(size,)i(implicit)d
(recipients,)h(etc.)45 b(Y)-9 b(ou)26 b(might)f(w)o(ant)i(to)g(add)f
(alternati)n(v)o(e)f(addresses)h(of)h(appro)o(v)o(ed)208
4366 y(posters)20 b(to)g(this)h(list.)0 4532 y Fl(hold)p
162 4532 V 51 w(these)p 393 4532 V 50 w(nonmembers)42
b Fo(Postings)26 b(from)e(non-members)f(whose)j(addresses)f(match)h
(this)g(list)h(are)f(held)f(for)g(moderator)f(ap-)208
4631 y(pro)o(v)n(al.)0 4797 y Fl(r)o(eject)p 208 4797
V 49 w(these)p 437 4797 V 50 w(nonmembers)42 b Fo(Postings)25
b(from)e(non-members)f(whose)j(addresses)f(match)g(this)i(list)f(are)g
(rejected,)g(i.e.)39 b(bounced)208 4897 y(back)19 b(to)h(the)h
(original)e(sender)-5 b(.)24 b(There)c(currently)e(is)j(no)f(w)o(ay)g
(to)h(add)e(additional)g(te)o(xt)h(to)g(the)h(rejection)e(message.)0
5063 y Fl(discard)p 268 5063 V 51 w(these)p 499 5063
V 50 w(nonmembers)42 b Fo(Postings)29 b(from)f(non-members)e(whose)j
(addresses)g(match)f(this)i(list)g(are)f(discarded,)h(with)f(no)208
5163 y(bounce)18 b(back)i(message.)k(Y)-9 b(ou)20 b(might)f(w)o(ant)i
(to)f(add)g(the)g(addresses)g(of)g(kno)n(wn)e(spammers)i(to)g(this)h
(list.)p 0 5549 3901 4 v 0 5649 a Fg(14)2612 b(3)84 b(The)23
b(List)g(Con\002gur)o(ation)h(P)m(ages)p eop end
%%Page: 15 15
TeXDict begin 15 14 bop 0 83 a Fl(generic)p 264 83 46
4 v 50 w(nonmember)p 743 83 V 50 w(action)41 b Fo(This)31
b(v)n(ariable)f(controls)g(what)h(happens)e(to)j(non-member)27
b(posts)32 b(when)e(the)h(address)g(of)g(the)208 183
y(sender)19 b(doesn')o(t)f(match)i(an)o(y)f(of)h(the)g(abo)o(v)o(e)e
(four)h(lists.)26 b(If)20 b(you)f(set)i(this)g(to)f Fj(Hold)p
Fo(,)f(the)h(posting)f(will)i(appear)e(on)g(the)h(adminis-)208
282 y(trati)n(v)o(e)e(requests)i(page,)e(and)h(you)g(will)h(be)g(gi)n
(v)o(en)e(an)h(opportunity)e(to)j(add)f(the)g(non-member)d(to)k(one)f
(of)g(the)h(abo)o(v)o(e)e(four)g(lists)208 382 y(at)i(the)g(same)h
(time)f(you)f(dispose)h(of)g(the)g(held)g(message.)0
543 y Fl(f)n(orward)p 295 543 V 49 w(auto)p 502 543 V
50 w(discards)41 b Fo(When)h(messages)g(from)e(non-members)f(are)j
(discarded,)j(either)c(because)g(the)h(sender)f(address)208
642 y(matched)26 b Ff(discard)p 872 642 V 49 w(these)p
1171 642 V 50 w(nonmembers)p Fo(,)h(or)g(because)g Ff(generic)p
2507 642 V 50 w(nonmember)p 3007 642 V 48 w(action)g
Fo(is)i Fj(Discar)m(d)p Fo(,)f(you)208 742 y(can)20 b(choose)f(whether)
g(such)h(messages)g(are)g(forw)o(arded)e(to)j(the)f(lsit)h
(administrators)e(or)h(not.)0 1008 y Fg(Recipient)k(Filters)0
1211 y Fo(The)c(v)n(ariables)f(in)i(this)f(section)g(control)f(v)n
(arious)g(\002lters)i(based)f(on)g(the)g(recipient)f(of)h(the)g
(message.)0 1427 y Fl(r)o(equir)o(e)p 266 1427 V 49 w(explicit)p
574 1427 V 50 w(destination)41 b Fo(This)21 b(controls)e(whether)h(the)
h(mailing)e(list)j(posting)e(address)g(must)g(be)h(e)o(xplicitly)e
(named)h(in)h(the)208 1527 y Fh(T)-9 b(o:)42 b Fo(or)28
b Fh(Cc:)43 b Fo(recipient)28 b(lists.)53 b(The)28 b(main)h(reason)f
(why)g(it)h(w)o(ouldn')o(t)e(is)j(if)f(the)g(message)g(w)o(as)g
(blind-carbon-copied)24 b(\(i.e.)208 1627 y Fh(Bcc:)p
Fo(')l(d\))g(to)h(the)f(list.)40 b(Spammers)24 b(lik)o(e)h(to)g(do)f
(this,)i(b)n(ut)f(sometimes)f(le)o(gitimate)g(messages)h(are)g(forw)o
(arded)e(to)h(the)h(list)h(this)208 1726 y(w)o(ay)-5
b(.)208 1856 y(If)15 b(the)g(list)i(is)f(not)f(e)o(xplicitly)g
(addressed)f(and)h(this)h(setting)f(is)i(turned)d(on,)i(the)f(message)g
(will)i(be)e(held)g(for)g(moderator)e(appro)o(v)n(al.)0
2017 y Fl(acceptable)p 380 2017 V 49 w(aliases)41 b Fo(This)f(is)h(the)
f(list)h(of)f(alternati)n(v)o(e)e(addresses)i(that)g(are)f(acceptable)g
(as)i(a)f(list)h(posting)e(address)g(when)208 2117 y
Ff(require)p 563 2117 V 49 w(explicit)p 1012 2117 V 49
w(destination)19 b Fo(is)j(enabled.)j(This)c(is)h(useful)e(for)g(when)g
(there)h(aliases)g(for)f(the)h(main)g(posting)208 2216
y(address)e(\(e.g.)25 b Ff(help@example.com)17 b Fo(may)j(be)g(an)g
(alias)h(for)f Ff(help-list@example.com)p Fo(\).)0 2377
y Fl(max)p 158 2377 V 50 w(num)p 369 2377 V 51 w(r)o(ecipients)41
b Fo(This)26 b(is)h(the)g(maximum)d(number)g(of)i(e)o(xplicit)g
(recipients)f(that)i(are)f(allo)n(wed)f(on)h(the)g(posted)g(message.)
208 2477 y(Spammers)16 b(sometimes)h(send)h(messages)f(with)h(lots)g
(of)f(e)o(xplicit)g(recipients,)g(so)h(setting)g(this)g(number)e(to)h
(a)h(reasonable)e(v)n(alue)208 2576 y(may)j(cut)h(do)n(wn)g(on)f(spam.)
0 2842 y Fg(Spam)24 b(Filters)0 3045 y Fo(This)e(section)g(pro)o(vides)
f(some)h(adjuncts)f(to)i(spam)f(\002ghting)f(tools;)i(it)g(doesn')o(t)e
(replace)g(dedicated)g(anti-spam)h(tools)g(such)g(as)h(Spa-)0
3145 y(mAssassin)e(or)f(Spambayes.)0 3361 y Fl(bounce)p
259 3361 V 50 w(matching)p 642 3361 V 50 w(headers)41
b Fo(This)17 b(v)n(ariable)e(contains)h(header)f(re)o(gular)g(e)o
(xpressions,)h(one)g(per)g(line,)h(and)f(if)h(an)o(y)e(of)h(a)h
(message')-5 b(s)208 3461 y(headers)23 b(matches)i(one)f(of)g(these)h
(patterns,)g(it)g(will)h(be)e(held)h(for)f(moderation.)36
b(The)24 b(format)g(is)h(a)g(colon)f(separated)g(header)208
3561 y(and)d(v)n(alue,)g(where)g(the)h(header)e(is)j(case)f(insensiti)n
(v)o(e)f(and)g(the)h(v)n(alue)f(is)h(an)o(y)f(v)n(alid)g(Python)g(re)o
(gular)f(e)o(xpression.)28 b(Lines)21 b(that)208 3660
y(start)f(with)h(#)f(are)g(ignored.)208 3790 y(This)j(v)n(ariable)f
(can)h(be)g(used)f(to)i(catch)f(kno)n(wn)e(spammers)h(by)h(writing)g
(re)o(ge)o(xps)e(that)i(match)g(against)f Fh(T)-9 b(o:)31
b Fo(or)22 b Fh(Cc:)32 b Fo(lines,)24 b(or)208 3890 y(kno)n(wn-bad)15
b Fh(Message-ID:)p Fo(s.)24 b(Perhaps)17 b(more)h(useful)g(though)e
(are)j(patterns)e(that)i(match)f(headers)f(added)g(by)h(spam)h
(detection)208 3990 y(tools)25 b(higher)g(up)g(in)h(the)g(tool)g
(chain.)41 b(F)o(or)25 b(e)o(xample,)h(you)f(might)g(con\002gure)f
(SpamAssassin)i(to)g(add)g(an)f Fh(X-Spam-Score:)208
4089 y Fo(header)17 b(with)h(between)f(zero)h(and)g(5)g(stars)h
(depending)d(on)h(the)i(spam)f(score.)24 b(Then)17 b(you)g(can)h(add)g
(a)h(line)f(to)g(this)h(v)n(ariable)e(lik)o(e:)623 4347
y Fb(X-Spam-Score:)43 b([*]{3,5})208 4568 y Fo(This)20
b(line)g(will)h(match)f(from)f(3)h(to)h(5)f(stars)h(in)f(the)g(v)n
(alue)g(of)g(this)g(\002eld.)0 4851 y Fk(3.8)100 b(The)28
b(Bounce)i(Processing)f(Categor)s(y)0 5054 y Fo(These)20
b(policies)g(control)f(the)h(automatic)f(bounce)g(processing)g(system)h
(in)g(Mailman.)25 b(Here')-5 b(s)20 b(an)g(o)o(v)o(ervie)n(w)e(of)i(ho)
n(w)g(it)h(w)o(orks:)0 5201 y(When)i(a)g(bounce)f(is)i(recei)n(v)o(ed,)
e(Mailman)g(tries)i(to)f(e)o(xtract)g(tw)o(o)g(pieces)g(of)g
(information)e(from)h(the)h(message:)31 b(the)23 b(address)g(of)g(the)0
5300 y(member)c(the)h(message)g(w)o(as)i(intended)c(for)m(,)h(and)h
(the)h(se)n(v)o(erity)e(of)h(the)g(problem)f(causing)g(the)i(bounce.)i
(The)d(se)n(v)o(erity)g(can)g(be)g(either)0 5400 y Fj(har)m(d)g
Fo(for)f(f)o(atal)i(errors,)e(or)h Fj(soft)g Fo(for)g(transient)g
(errors.)k(When)c(in)g(doubt,)f(a)h(hard)f(se)n(v)o(erity)h(is)h(used.)
p 0 5549 3901 4 v 0 5649 a Fg(3.8)83 b(The)24 b(Bounce)f(Processing)g
(Categor)r(y)2366 b(15)p eop end
%%Page: 16 16
TeXDict begin 16 15 bop 0 83 a Fo(If)18 b(no)h(member)e(address)h(can)h
(be)f(e)o(xtracted)f(from)h(the)h(bounce,)e(then)h(the)h(bounce)e
(message)h(is)i(usually)e(discarded.)23 b(Ev)o(ery)17
b(member)0 183 y(has)30 b(a)h Fj(bounce)d(scor)m(e)p
Fo(,)33 b(initialized)c(at)i(zero,)h(and)d(e)n(v)o(ery)g(time)h(we)g
(encounter)e(a)j(bounce)d(from)h(a)i(member)d(we)j(increment)d(that)0
282 y(member')-5 b(s)22 b(score.)35 b(Hard)23 b(bounces)f(increment)g
(by)h(1)h(while)f(soft)h(bounces)e(increment)g(by)h(0.5.)34
b(W)-7 b(e)25 b(only)e(increment)f(the)h(bounce)0 382
y(score)d(once)g(per)g(day)-5 b(,)19 b(so)i(e)n(v)o(en)e(if)i(we)g
(recei)n(v)o(e)e(ten)i(hard)e(bounces)g(from)g(a)i(member)e(per)h(day)
-5 b(,)20 b(their)g(score)g(will)h(increase)f(by)g(only)f(1)0
482 y(for)h(that)g(day)-5 b(.)0 628 y(When)22 b(a)h(member')-5
b(s)22 b(bounce)e(score)j(is)g(greater)f(than)g(the)g
Fj(bounce)f(scor)m(e)i(thr)m(eshold)e Fo(\(see)i(belo)n(w\),)f(the)g
(member')-5 b(s)22 b(subscription)f(is)0 728 y(disabled.)37
b(Once)25 b(disabled,)f(the)h(member)e(will)i(not)g(recei)n(v)o(e)e(an)
o(y)h(postings)g(from)f(the)i(list)h(until)e(their)g(membership)f(is)j
(e)o(xplicitly)0 828 y(re-enabled,)j(either)g(by)g(the)g(list)h
(administrator)e(or)g(the)i(user)-5 b(.)52 b(Ho)n(we)n(v)o(er)m(,)29
b(the)o(y)g(will)h(recei)n(v)o(e)e(occasional)g(reminders)g(that)h
(their)0 927 y(membership)14 b(has)j(been)f(disabled,)g(and)g(these)g
(reminders)f(will)i(include)e(information)f(about)i(ho)n(w)f(to)i
(re-enable)e(their)h(membership.)0 1027 y(Y)-9 b(ou)19
b(can)h(control)f(both)g(the)g(number)g(of)g(reminders)g(the)g(member)g
(will)i(recei)n(v)o(e)d(and)i(the)f(frequenc)o(y)f(with)i(which)f
(these)h(reminders)0 1127 y(are)g(sent.)0 1273 y(There)f(is)h(one)f
(other)g(important)f(con\002guration)f(v)n(ariable;)i(after)g(a)h
(certain)f(period)g(of)g(time)h(\226)f(during)f(which)i(no)f(bounces)f
(from)h(the)0 1373 y(member)e(are)i(recei)n(v)o(ed)e(\226)i(the)g
(bounce)e(information)g(is)i(considered)e(stale)j(and)e(discarded.)23
b(Thus)c(by)f(adjusting)g(this)h(v)n(alue,)f(and)h(the)0
1473 y(score)24 b(threshold,)g(you)g(can)g(control)f(ho)n(w)h(quickly)g
(bouncing)e(members)h(are)i(disabled.)37 b(Y)-9 b(ou)24
b(should)f(tune)h(both)g(of)g(these)h(to)g(the)0 1572
y(frequenc)o(y)17 b(and)j(traf)n(\002c)g(v)n(olume)f(of)h(your)f(list.)
0 1802 y Fl(bounce)p 259 1802 46 4 v 50 w(pr)o(ocessing)41
b Fo(Speci\002es)21 b(whether)e(or)h(not)f(this)i(list)g(should)f(do)f
(automatic)h(bounce)e(processing.)0 1968 y Fl(bounce)p
259 1968 V 50 w(scor)o(e)p 493 1968 V 50 w(thr)o(eshold)41
b Fo(This)23 b(is)i(the)e(bounce)f(score)h(abo)o(v)o(e)f(which)h(a)h
(member')-5 b(s)23 b(subscription)f(will)i(be)f(automatically)f(dis-)
208 2068 y(abled.)i(When)19 b(the)g(subscription)f(is)i(re-enabled,)e
(their)h(bounce)f(score)h(will)h(be)f(reset)h(to)f(zero.)25
b(This)19 b(v)n(alue)g(can)g(be)g(a)h(\003oating)208
2167 y(point)f(number)-5 b(.)0 2334 y Fl(bounce)p 259
2334 V 50 w(inf)n(o)p 446 2334 V 50 w(stale)p 658 2334
V 50 w(after)40 b Fo(Thenumber)20 b(of)i(days)f(after)h(which)g(a)g
(member')-5 b(s)21 b(bounce)g(information)e(is)k(considered)e(stale.)31
b(If)22 b(no)208 2433 y(ne)n(w)c(bounces)g(ha)n(v)o(e)g(been)g(recei)n
(v)o(ed)g(in)h(the)g(interrim,)f(the)h(bounce)e(score)h(is)i(reset)g
(to)f(zero.)24 b(This)19 b(v)n(alue)f(must)h(be)g(an)g(inte)o(ger)-5
b(.)0 2599 y Fl(bounce)p 259 2599 V 50 w(y)n(ou)p 437
2599 V 50 w(ar)o(e)p 602 2599 V 49 w(disabled)p 946 2599
V 51 w(war)o(nings)41 b Fo(The)19 b(number)e(of)h(notices)h(a)g
(disabled)f(member)g(will)h(recei)n(v)o(e)f(before)g(their)g(address)h
(is)208 2699 y(remo)o(v)o(ed)i(from)h(the)h(mailing)g(list')-5
b(s)25 b(roster)-5 b(.)34 b(Set)25 b(this)e(to)h(0)f(to)h(immediately)e
(remo)o(v)o(e)g(an)h(address)g(from)f(the)i(list)g(once)f(their)208
2798 y(bounce)18 b(score)i(e)o(xceeds)f(the)h(threshold.)k(This)c(v)n
(alue)g(must)g(be)g(an)g(inte)o(ger)-5 b(.)0 2964 y Fl(bounce)p
259 2964 V 50 w(y)n(ou)p 437 2964 V 50 w(ar)o(e)p 602
2964 V 49 w(disabled)p 946 2964 V 51 w(war)o(nings)p
1324 2964 V 50 w(inter)o(v)o(al)41 b Fo(The)20 b(number)e(of)i(days)g
(between)f(each)h(disabled)g(noti\002cation.)0 3131 y
Fl(bounce)p 259 3131 V 50 w(unr)o(ecognized)p 784 3131
V 50 w(goes)p 987 3131 V 49 w(to)p 1106 3131 V 50 w(list)p
1262 3131 V 51 w(o)o(wner)41 b Fo(This)19 b(v)n(ariable)e(controls)h
(whether)f(unrecognized)f(bounces)h(are)h(discarded,)g(or)208
3230 y(forw)o(arded)26 b(on)j(the)f(list)i(administrator)-5
b(.)50 b(The)28 b(bounce)f(detector)h(isn')o(t)h(perfect,)g(although)e
(personalization)g(can)h(mak)o(e)h(it)208 3330 y(much)g(more)g
(accurate.)54 b(The)30 b(list)h(o)n(wner)e(may)h(w)o(ant)g(to)g(recei)n
(v)o(e)f(unrecognized)e(bounces)i(so)h(that)h(the)o(y)e(can)h(manually)
208 3429 y(disable)20 b(or)f(remo)o(v)o(e)g(such)h(members.)0
3595 y Fl(bounce)p 259 3595 V 50 w(notify)p 518 3595
V 50 w(o)o(wner)p 789 3595 V 50 w(on)p 927 3595 V 50
w(disable)42 b Fo(This)23 b(option)f(controls)g(whether)f(or)i(not)g
(the)g(list)h(o)n(wner)e(is)i(noti\002ed)e(when)g(a)i(member')-5
b(s)208 3695 y(subscription)18 b(is)j(automatically)e(disabled)h(due)f
(to)h(their)g(bounce)f(threshold)g(being)g(reached.)0
3861 y Fl(bounce)p 259 3861 V 50 w(notify)p 518 3861
V 50 w(o)o(wner)p 789 3861 V 50 w(on)p 927 3861 V 50
w(r)o(emo)o(v)o(al)40 b Fo(This)19 b(option)e(controls)h(whether)f(or)h
(not)h(the)f(list)i(o)n(wner)d(is)j(noti\002ed)e(when)f(a)i(member)f
(is)208 3961 y(remo)o(v)o(ed)f(from)i(the)i(list)g(after)f(their)g
(disabled)f(noti\002cations)g(ha)n(v)o(e)h(been)g(e)o(xhausted.)0
4246 y Fk(3.9)100 b(The)28 b(Archiving)i(Options)e(Categor)s(y)0
4449 y Fo(Mailman)e(comes)h(with)f(a)i(b)n(uilt-in)e(web-based)f(archi)
n(v)o(er)g(called)i Fj(Pipermail)p Fo(,)g(although)e(it)j(can)e(be)h
(con\002gured)d(to)j(use)g(e)o(xternal,)0 4548 y(third)20
b(party)f(archi)n(v)o(ers.)0 4778 y Fl(ar)o(chi)o(v)o(e)40
b Fo(This)21 b(option)e(tells)j(Mailman)e(whether)g(to)h(archi)n(v)o(e)
e(messages)i(it)g(recei)n(v)o(es)f(or)g(not,)h(re)o(gardless)e(of)h
(whether)g(Pipermail)g(or)208 4878 y(a)g(third)g(party)f(archi)n(v)o
(er)g(is)i(used.)j(T)l(urn)c(this)g(of)n(f)g(if)g(you)g(don')o(t)e(w)o
(ant)j(to)f(archi)n(v)o(e)f(messages.)208 5011 y(Note)k(that)g(senders)
g(can)g(control)f(whether)h(their)g(o)n(wn)g(posts)g(are)g(archi)n(v)o
(ed,)f(on)h(an)h(indi)n(vidual)d(per)n(-message)h(basis.)35
b(If)24 b(the)208 5110 y(posted)i(message)i(has)f(a)h
Fh(X-No-Archiv)n(e:)39 b Fo(header)26 b(\(re)o(gardless)g(of)h(v)n
(alue\),)h(or)f(a)h Fh(X-Archiv)n(e:)39 b Fo(header)27
b(with)g(a)h(v)n(alue)f(of)g Ff(No)208 5210 y Fo(\(case)20
b(insensiti)n(v)o(e\),)f(then)h(the)g(message)g(will)h(not)f(be)g
(archi)n(v)o(ed,)e(although)g(it)j(will)g(be)f(treated)g(as)h(normal)e
(in)h(all)h(other)e(w)o(ays.)p 0 5549 3901 4 v 0 5649
a Fg(16)2612 b(3)84 b(The)23 b(List)g(Con\002gur)o(ation)h(P)m(ages)p
eop end
%%Page: 17 17
TeXDict begin 17 16 bop 0 83 a Fl(ar)o(chi)o(v)o(e)p
266 83 46 4 v 49 w(pri)o(v)o(ate)41 b Fo(Controls)22
b(whether)f(Pipermail)h(archi)n(v)o(es)g(are)g(pri)n(v)n(ate)f(or)i
(public.)30 b(Pri)n(v)n(ate)23 b(archi)n(v)o(es)e(require)g(a)i(v)n
(alid)f(member)208 183 y(address)f(and)f(passw)o(ord,)h(or)g(a)h(list)h
(administrator)c(passw)o(ord)i(in)h(order)e(to)i(access)g(them.)28
b(This)21 b(option)g(has)g(no)g(ef)n(fect)g(when)208
282 y(a)f(third)g(party)f(archi)n(v)o(er)g(is)i(used.)0
448 y Fl(ar)o(chi)o(v)o(e)p 266 448 V 49 w(v)o(olume)p
573 448 V 50 w(fr)o(equency)41 b Fo(Controls)28 b(ho)n(w)g(Pipermail)g
(splits)h(messages)g(in)g(the)f(archi)n(v)o(e.)49 b(The)28
b(most)h(common)d(option)i(is)208 548 y Fj(Monthly)g
Fo(meaning)f(a)i(ne)n(w)g(archi)n(v)o(e)e(v)n(olume)h(is)h(started)g(e)
n(v)o(ery)f(month.)49 b(V)-9 b(ery)28 b(high)g(v)n(olume)g(lists)i(may)
e(w)o(ant)h(a)g(shorter)208 648 y(frequenc)o(y)19 b(\(e.g.)32
b Fj(W)-8 b(eekly)23 b Fo(or)g Fj(Daily)p Fo(\))f(where)g(as)i(lo)n
(wer)e(v)n(olume)g(lists)i(may)e(w)o(ant)h(a)g(longer)e(frequenc)o(y)f
(\(e.g.)32 b Fj(Y)-8 b(early)p Fo(\).)32 b(This)208 747
y(option)19 b(has)h(no)g(ef)n(fect)f(when)h(a)h(third)e(party)g(archi)n
(v)o(er)g(is)i(used.)0 1032 y Fk(3.10)100 b(The)29 b(Mail/Ne)n(ws)f
(Gate)n(w)o(a)m(y)f(Categor)s(y)0 1235 y Fo(Mailman)18
b(has)g(a)h(sophisticated)e(mail-to-ne)n(ws)g(gate)n(w)o(ay)h(feature.)
23 b(It)c(can)f(independently)d(gate)j(messages)g(from)g(ne)n(ws)g(to)h
(mail)f(and)0 1335 y(vice)i(v)o(ersa,)g(and)f(can)h(e)n(v)o(en)f(be)h
(used)g(to)h(manage)e(moderated)f(ne)n(wsgroups.)0 1620
y Fk(3.11)100 b(The)29 b(A)m(uto-responder)i(Categor)s(y)0
1839 y(3.12)100 b(The)29 b(Content)f(Filter)q(ing)i(Categor)s(y)0
2059 y(3.13)100 b(The)29 b(T)-12 b(opics)28 b(Categor)s(y)0
2311 y Fp(4)120 b(Membership)34 b(Management)0 2594 y(5)120
b(T)-14 b(ending)35 b(to)f(P)-6 b(ending)35 b(Moder)o(ator)f(Requests)0
2876 y(6)120 b(Editing)34 b(the)g(Pub)n(lic)f(HTML)g(P)-5
b(ages)0 3159 y(7)120 b(Deleting)35 b(the)f(Mailing)f(List)0
3442 y(A)119 b(This)33 b(is)g(an)h(Appendix)0 3675 y
Fo(T)-7 b(o)20 b(create)g(an)g(appendix)f(in)h(a)g(Python)g(HO)m(WT)o
(O)g(document,)e(use)i(markup)f(lik)o(e)h(this:)236 3954
y Fb(\\appendix)236 4137 y(\\section{This)43 b(is)h(an)h(Appendix})236
4320 y(To)g(create)f(an)g(appendix)g(in)g(a)h(Python)f(HOWTO)f
(document,)h(....)236 4593 y(\\section{This)f(is)h(another})236
4776 y(Just)g(add)h(another)e(\\section{},)g(but)i(don't)f(say)g
(\\appendix)f(again.)p 0 5549 3901 4 v 0 5649 a Fg(3.10)84
b(The)23 b(Mail/Ne)n(ws)h(Gate)n(w)o(a)n(y)e(Categor)r(y)2309
b(17)p eop end
%%Trailer

userdict /end-hook known{end-hook}if
%%EOF