aboutsummaryrefslogtreecommitdiffstats
path: root/admin/www/mailman-member.ps
blob: 009a8e98920eb37c593598091f966174688f9e28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
%!PS-Adobe-2.0
%%Creator: dvips(k) 5.92b Copyright 2002 Radical Eye Software
%%Title: mailman-member.dvi
%%Pages: 20
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 842
%%DocumentFonts: Helvetica Helvetica-Oblique Times-Roman Times-Bold
%%+ CMSY10 Times-Italic CMMI10
%%EndComments
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -N0 -o mailman-member.ps mailman-member
%DVIPSParameters: dpi=600, compressed
%DVIPSSource:  TeX output 2004.10.02:1859
%%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: aae443f0.enc
% Thomas Esser, Dec 2002. public domain
%
% Encoding for:
%     cmmi10 cmmi12 cmmi5 cmmi6 cmmi7 cmmi8 cmmi9 cmmib10
%
/TeXaae443f0Encoding [
/Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega
/alpha /beta /gamma /delta /epsilon1 /zeta /eta /theta /iota /kappa
/lambda /mu /nu /xi /pi /rho /sigma /tau /upsilon /phi /chi /psi
/omega /epsilon /theta1 /pi1 /rho1 /sigma1 /phi1 /arrowlefttophalf
/arrowleftbothalf /arrowrighttophalf /arrowrightbothalf /arrowhookleft
/arrowhookright /triangleright /triangleleft /zerooldstyle /oneoldstyle
/twooldstyle /threeoldstyle /fouroldstyle /fiveoldstyle /sixoldstyle
/sevenoldstyle /eightoldstyle /nineoldstyle /period /comma /less /slash
/greater /star /partialdiff /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 /flat /natural /sharp /slurbelow
/slurabove /lscript /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 /dotlessi /dotlessj /weierstrass /vector
/tie /psi /.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
/space /Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi
/.notdef /.notdef /Omega /alpha /beta /gamma /delta /epsilon1 /zeta /eta
/theta /iota /kappa /lambda /mu /nu /xi /pi /rho /sigma /tau /upsilon
/phi /chi /psi /tie /.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: CMMI10
%!PS-AdobeFont-1.1: CMMI10 1.100
%%CreationDate: 1996 Jul 23 07:53:57
% Copyright (C) 1997 American Mathematical Society. All Rights Reserved.
11 dict begin
/FontInfo 7 dict dup begin
/version (1.100) readonly def
/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def
/FullName (CMMI10) readonly def
/FamilyName (Computer Modern) readonly def
/Weight (Medium) readonly def
/ItalicAngle -14.04 def
/isFixedPitch false def
end readonly def
/FontName /CMMI10 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{-32 -250 1048 750}readonly def
/UniqueID 5087385 def
currentdict end
currentfile eexec
D9D66F633B846A97B686A97E45A3D0AA0529731C99A784CCBE85B4993B2EEBDE
3B12D472B7CF54651EF21185116A69AB1096ED4BAD2F646635E019B6417CC77B
532F85D811C70D1429A19A5307EF63EB5C5E02C89FC6C20F6D9D89E7D91FE470
B72BEFDA23F5DF76BE05AF4CE93137A219ED8A04A9D7D6FDF37E6B7FCDE0D90B
986423E5960A5D9FBB4C956556E8DF90CBFAEC476FA36FD9A5C8175C9AF513FE
D919C2DDD26BDC0D99398B9F4D03D5993DFC0930297866E1CD0A319B6B1FD958
9E394A533A081C36D456A09920001A3D2199583EB9B84B4DEE08E3D12939E321
990CD249827D9648574955F61BAAA11263A91B6C3D47A5190165B0C25ABF6D3E
6EC187E4B05182126BB0D0323D943170B795255260F9FD25F2248D04F45DFBFB
DEF7FF8B19BFEF637B210018AE02572B389B3F76282BEB29CC301905D388C721
59616893E774413F48DE0B408BC66DCE3FE17CB9F84D205839D58014D6A88823
D9320AE93AF96D97A02C4D5A2BB2B8C7925C4578003959C46E3CE1A2F0EAC4BF
8B9B325E46435BDE60BC54D72BC8ACB5C0A34413AC87045DC7B84646A324B808
6FD8E34217213E131C3B1510415CE45420688ED9C1D27890EC68BD7C1235FAF9
1DAB3A369DD2FC3BE5CF9655C7B7EDA7361D7E05E5831B6B8E2EEC542A7B38EE
03BE4BAC6079D038ACB3C7C916279764547C2D51976BABA94BA9866D79F13909
95AA39B0F03103A07CBDF441B8C5669F729020AF284B7FF52A29C6255FCAACF1
74109050FBA2602E72593FBCBFC26E726EE4AEF97B7632BC4F5F353B5C67FED2
3EA752A4A57B8F7FEFF1D7341D895F0A3A0BE1D8E3391970457A967EFF84F6D8
47750B1145B8CC5BD96EE7AA99DDC9E06939E383BDA41175233D58AD263EBF19
AFC0E2F840512D321166547B306C592B8A01E1FA2564B9A26DAC14256414E4C8
42616728D918C74D13C349F4186EC7B9708B86467425A6FDB3A396562F7EE4D8
40B43621744CF8A23A6E532649B66C2A0002DD04F8F39618E4F572819DD34837
B5A08E643FDCA1505AF6A1FA3DDFD1FA758013CAED8ACDDBBB334D664DFF5B53
95601766777978D01677B8D19E1B10A078432D2884BB4F7B8C3293B68BB78100
16724E495064BA0168CC86D413CB48560D6D318357397832F7A858CD82030C7D
8A4A1919716E8B26AFF8789AAF489EE4E0A88DC477551A87C7DF2856189E4596
FE015956AFE5CC019F5CA6323A12B763B7B08B92C1A2940D3C566C43729E5482
63C6DC5E834AEB4DAFB5AE8F0B8931A4687C94D11587B9071C8D81DA14F12776
53A1985A3EBE37827656BD4635E03F09C3231F906874645E7DB3E59045A59D67
E745D8487CF73FC50F64060544F624F357BC998A87FBE468DEBB38A09449EBCA
D041D7C29225ACD16CB8A59E87924D15A9125F064710A6CCCA3AD3103D8FCC94
CC3571C6F9192774FCFE5BB42A14B27960903144D28BF047BF4C77646EA7BF6F
440D4EDEB712C63F2E8080419E42D1D58EED685EB5CDD49F80DB6E5553B519FA
C6A39A093155802F3EC607721F390307E91ECB597ABA60A537E3F8C045BF5DD3
D88CF6518D37FCD95D2F295D902D617440D23516D962F47750A682A319ACE1
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%%EndFont 
%%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
515DB70A8D4F6146FE068DC1E5DE8BC57036431151EC603C8BCFE359BBD953AD
5F3D998C6EE18EABCDD31D35C7E933DEA008418A4F0845FC9A361328AB270359
C974485C9BCBCB1E9EBBF3ACC647C4108F7E05961E22390303FD667A2294F500
7A085C407876060C7B8583F57849FA24B596194B61DFEA86D73001470B9331CF
9883EC171BD83263C7E20619B8C2AF6DDBC6502C4D9FFDF9B96C888ED8560FD3
B935AB23824A4C8CC9FF153F13C43139F956AA1FF21F89D670229ED5D6CE3C3F
A79E49D65D8C42470D086F330522514265CEFBE8CF5FBBE840EDBC4AB7BE4549
C37DDF51972EA0927AA95FAA7E7C36E4434AD5C3EE98AB2EF979D68C11C8E026
72B121CAA2A16F71810323B17A32D8FE0568D922203E82E54E6047B11B66D0C8
474630A3DFDB74DD3E5340F40B0B724EAC5780C0E2013D62CA6236
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%%EndFont 
TeXDict begin 39158280 55380996 1000 600 600 (mailman-member.dvi)
@start /Fa 190[42 65[{ TeXBase1Encoding ReEncodeFont }1
58.1154 /Times-Roman rf /Fb 193[65 1[65 60[{
 TeXaae443f0Encoding ReEncodeFont }2 83.022 /CMMI10 rf
/Fc 133[32 37 37 55 37 42 23 32 32 1[42 42 42 60 23 37
1[23 42 42 23 37 42 37 1[42 9[69 3[42 51 1[51 60 55 1[46
6[51 60 2[51 76 2[56 14[21 28 45[{ TeXBase1Encoding ReEncodeFont }37
83.022 /Times-Italic rf /Fd 134[37 37 54 37 42 21 37
25 42 42 42 42 62 17 37 17 17 42 42 21 42 42 37 42 42
8[50 71 50 1[46 50 54 2[58 54 62 42 50 1[21 3[50 54 54
50 50 76 5[21 1[42 6[42 1[21 21 25 2[29 39[37 2[{
 TeXBase1Encoding ReEncodeFont }51 74.7198 /Helvetica
rf /Fe 145[42 94[42 15[{ TeXbbad153fEncoding ReEncodeFont }2
83.022 /CMSY10 rf /Ff 134[42 1[60 42 46 23 42 28 46 46
46 46 69 18 42 1[18 46 46 23 46 46 42 46 46 9[78 2[51
55 2[55 2[69 3[23 60 2[55 1[60 55 55 1[46 5[46 46 46
46 46 46 46 46 46 46 1[23 4[28 28 18 39[{
 TeXBase1Encoding ReEncodeFont }49 83.022 /Helvetica
rf /Fg 134[50 50 72 50 55 28 50 33 1[55 55 55 83 22 50
22 22 55 55 28 55 55 50 55 55 9[94 1[72 61 66 2[66 1[72
83 3[28 72 78 1[66 72 72 1[66 1[55 5[55 55 55 55 55 55
55 55 55 55 1[28 4[33 33 22 39[{ TeXBase1Encoding ReEncodeFont }53
99.6264 /Helvetica rf /Fh 105[42 28[42 42 60 42 46 28
32 37 46 46 42 46 69 23 46 1[23 46 42 28 37 46 37 46
42 9[83 60 1[55 46 60 1[51 65 60 78 55 2[32 3[55 60 60
55 60 6[28 42 42 42 42 42 42 42 42 42 42 6[28 28 28 5[28
33[{ TeXBase1Encoding ReEncodeFont }56 83.022 /Times-Bold
rf /Fi 136[54 37 37 21 29 25 37 37 37 37 58 21 37 1[21
37 37 25 33 37 33 37 33 11[54 46 5[54 66 3[25 1[54 20[37
37 2[19 25 19 44[{ TeXBase1Encoding ReEncodeFont }33
74.7198 /Times-Roman rf /Fj 139[25 29 33 14[33 42 37
31[54 65[{ TeXBase1Encoding ReEncodeFont }7 74.7198 /Times-Bold
rf /Fk 104[83 42 1[37 37 24[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
2[28 1[28 51 60 60 78 60 60 51 46 55 60 46 60 60 74 51
60 32 28 60 60 46 51 60 55 55 60 76 37 1[47 2[23 42 42
42 42 42 42 42 42 42 42 23 21 28 21 1[42 28 28 28 1[69
3[28 29[46 46 2[{ TeXBase1Encoding ReEncodeFont }85 83.022
/Times-Roman rf /Fl 134[60 60 86 60 66 33 60 40 66 66
66 66 100 27 60 1[27 66 66 33 66 66 60 66 66 12[73 80
2[80 93 1[100 3[33 3[80 86 86 80 80 7[66 66 66 66 66
66 66 66 66 66 8[27 5[33 33[{ TeXBase1Encoding ReEncodeFont }47
119.552 /Helvetica rf /Fm 140[50 6[22 6[55 3[55 14[72
31[55 55 2[28 46[{ TeXBase1Encoding ReEncodeFont }8 99.6264
/Helvetica-Oblique rf /Fn 138[115 57 103 69 3[115 172
46 2[46 3[115 2[115 115 11[149 6[149 172 115 4[161 25[69
45[{ TeXBase1Encoding ReEncodeFont }17 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 551 341 a Fn(GNU)57
b(Mailman)g(-)g(List)h(Member)f(Man)n(ual)3368 488 y
Fm(Release)30 b(2.1)3408 842 y Fl(T)-14 b(err)r(i)32
b(Oda)3363 1197 y Fk(October)19 b(2,)h(2004)3243 1343
y(terri\(at\)zone12.com)1811 1545 y Fj(Abstract)208 1683
y Fi(This)j(document)i(describes)g(the)e(list)g(member)i(interf)o(ace)f
(for)f(GNU)h(Mailman)g(2.1.)38 b(It)23 b(contains)h(instructions)h(for)
e(subscribing,)208 1775 y(unsubscribing,)31 b(vie)n(wing)e(the)f(archi)
n(v)o(es,)i(editing)f(user)f(options,)i(getting)f(passw)o(ord)g
(reminders,)h(and)f(other)f(subscriber)o(-le)n(v)o(el)208
1866 y(tasks.)23 b(It)18 b(also)h(answers)h(some)f(common)h(questions)g
(of)f(interest)g(to)g(Mailman)g(list)f(members.)0 2143
y Fl(Contents)0 2328 y Fh(1)83 b(Intr)o(oduction)3281
b(2)125 2428 y Fk(1.1)85 b(Ackno)n(wledgements)41 b(.)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(2)125 2527 y(1.2)85 b(What)21 b(is)g(a)g(mailing)e
(list?)80 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(3)125 2627
y(1.3)85 b(GNU)21 b(Mailman)75 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(.)143 b(3)0 2810 y Fh(2)83 b(T)-6 b(ranslating)19
b(fr)o(om)h(our)g(examples)g(to)g(r)o(eal)g(lists)2230
b(3)0 2992 y(3)83 b(Mailman')m(s)20 b(interfaces)2986
b(4)125 3092 y Fk(3.1)85 b(The)20 b(web)g(interf)o(ace)40
b(.)h(.)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(4)125 3192
y(3.2)85 b(The)20 b(email)h(interf)o(ace)55 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(5)0 3374 y Fh(4)83 b(I)21 b(need)f(to)g(talk)g(to)g
(a)h(human!)2815 b(6)0 3557 y(5)83 b(Subscribing)21 b(and)f
(unsubscribing)2632 b(6)125 3657 y Fk(5.1)85 b(Ho)n(w)21
b(do)e(I)i(join)f(a)g(list?)26 b(\(subscribe\))63 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(6)125 3756 y(5.2)85 b(Ho)n(w)21 b(do)e(I)i(lea)n(v)o(e)f(a)g
(list?)27 b(\(unsubscribe\))59 b(.)42 b(.)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)0 3939 y Fh(6)83
b(P)o(assw)o(ords)3361 b(8)125 4038 y Fk(6.1)85 b(Ho)n(w)21
b(do)e(I)i(get)f(my)g(passw)o(ord?)80 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(8)125 4138 y(6.2)85 b(Ho)n(w)21 b(do)e(I)i(change)e(my)g(passw)o
(ord?)72 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(8)125 4238 y(6.3)85 b(Ho)n(w)21
b(do)e(I)i(turn)e(passw)o(ord)h(reminders)e(on)i(or)g(of)n(f?)25
b(\(reminders)18 b(option\))49 b(.)42 b(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)h
(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)143 b(9)0
4420 y Fh(7)83 b(Changing)19 b(mail)i(deli)o(v)o(ery)2904
b(9)125 4520 y Fk(7.1)85 b(Ho)n(w)21 b(do)e(I)i(turn)e(mail)i(deli)n(v)
o(ery)d(on)i(or)g(of)n(f?)k(\(deli)n(v)o(ery)18 b(option\))30
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(.)143 b(9)125 4620 y(7.2)85
b(Ho)n(w)21 b(can)f(I)g(a)n(v)n(oid)g(getting)f(duplicate)g(messages?)
26 b(\(duplicates)19 b(option\))49 b(.)42 b(.)f(.)g(.)g(.)h(.)f(.)g(.)g
(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102 b(10)125
4719 y(7.3)85 b(Ho)n(w)21 b(do)e(I)i(change)e(my)g(subscription)g
(address?)h(.)41 b(.)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(10)125 4819 y(7.4)85 b(Ho)n(w)21 b(do)e(I)i(stop)f(or)g(start)h
(getting)e(copies)h(of)g(my)g(o)n(wn)f(posts?)25 b(\(myposts)20
b(option\))36 b(.)42 b(.)f(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f
(.)g(.)g(.)102 b(11)125 4918 y(7.5)85 b(Ho)n(w)21 b(can)f(I)g(get)g
(Mailman)g(to)g(tell)h(me)f(when)g(my)g(post)g(has)g(been)g(recei)n(v)o
(ed)e(by)i(the)g(list?)26 b(\(ack)20 b(option\))36 b(.)41
b(.)h(.)f(.)g(.)g(.)102 b(11)125 5018 y(7.6)85 b(I)21
b(don')o(t)d(seem)j(to)f(be)g(getting)g(mail)g(from)f(the)h(lists.)27
b(What)20 b(should)f(I)i(do?)60 b(.)42 b(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)
h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102 b(12)0
5201 y Fh(8)83 b(Digests)3438 b(13)125 5300 y Fk(8.1)85
b(Ho)n(w)21 b(can)f(I)g(start)h(or)f(stop)g(getting)f(the)h(list)i
(posts)e(grouped)e(into)i(one)f(big)h(email?)25 b(\(digest)20
b(option\))33 b(.)41 b(.)g(.)g(.)h(.)f(.)g(.)g(.)102
b(13)125 5400 y(8.2)85 b(What)21 b(are)f(MIME)g(and)g(Plain)g(T)-6
b(e)o(xt)20 b(Digests?)26 b(Ho)n(w)20 b(do)f(I)i(change)e(which)g(one)h
(I)g(get?)25 b(\(digest)20 b(option\))35 b(.)41 b(.)h(.)f(.)g(.)g(.)102
b(13)p eop end
%%Page: 2 2
TeXDict begin 2 1 bop 0 83 a Fh(9)83 b(Mailing)20 b(list)h(topics)3060
b(14)125 183 y Fk(9.1)85 b(Ho)n(w)21 b(do)e(I)i(mak)o(e)e(sure)i(that)f
(my)g(post)g(has)g(the)g(right)g(topic?)65 b(.)41 b(.)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)125 282 y(9.2)85 b(Ho)n(w)21 b(do)e(I)i(subscribe)e
(to)h(all)h(or)f(only)f(some)h(topics)h(on)e(a)i(list?)56
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(.)102 b(15)125 382 y(9.3)85
b(Ho)n(w)21 b(do)e(I)i(get)f(or)g(a)n(v)n(oid)g(getting)f(messages)h
(with)h(no)f(topic)f(set?)90 b(.)41 b(.)g(.)g(.)h(.)f(.)g(.)g(.)h(.)f
(.)g(.)g(.)h(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102
b(15)0 565 y Fh(10)41 b(Setting)19 b(other)h(options)2954
b(16)125 664 y Fk(10.1)43 b(Change)20 b(Globally?)k(Set)d(Globally?)j
(What)d(does)f(that)g(mean?)102 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(.)102
b(16)125 764 y(10.2)43 b(Ho)n(w)21 b(do)e(I)i(change)e(my)g(name)h(as)h
(Mailman)f(kno)n(ws)f(it?)53 b(.)42 b(.)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 863 y(10.3)43 b(Ho)n(w)21 b(do)e(I)i(set)g(my)f
(preferred)e(language?)25 b(.)42 b(.)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 963 y(10.4)43
b(Ho)n(w)21 b(do)e(I)i(a)n(v)n(oid)f(ha)n(ving)f(my)h(name)f(appear)g
(on)h(the)g(subscribers)f(list?)27 b(\(the)19 b(hide)h(option\))68
b(.)41 b(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102 b(17)0
1146 y Fh(11)41 b(Other)19 b(common)i(questions)2802
b(17)125 1245 y Fk(11.1)43 b(Ho)n(w)21 b(do)e(I)i(vie)n(w)f(the)g(list)
h(archi)n(v)o(es?)69 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(17)125 1345 y(11.2)43
b(What)21 b(does)f(Mailman)g(do)f(to)i(help)e(protect)h(me)g(from)f
(unsolicited)g(b)n(ulk)h(email)g(\(spam\)?)65 b(.)42
b(.)f(.)g(.)h(.)f(.)g(.)g(.)h(.)f(.)g(.)g(.)102 b(17)0
1528 y Fh(A)65 b(Email)20 b(commands)h(quick)g(r)o(efer)o(ence)2506
b(18)0 1710 y(B)70 b(Member)21 b(options)f(quick)h(r)o(efer)o(ence)2538
b(19)p 0 1857 3901 9 v 0 2284 a Fl(1)120 b(Introduction)0
2517 y Fk(This)27 b(document)d(is)j(intended)e(to)i(help)f(the)g
(members)f(of)i(a)f(Mailman)g(2.1)g(mailing)g(list)h(learn)f(to)h(use)f
(the)h(features)e(a)n(v)n(ailable)h(to)0 2617 y(them.)h(It)21
b(co)o(v)o(ers)f(the)h(use)g(of)g(the)g(web)g(and)f(email)h(interf)o
(aces)g(for)f(subscribing)f(and)i(unsubscribing,)d(changing)h(member)h
(options,)0 2716 y(getting)25 b(passw)o(ord)g(reminders)g(and)g(other)g
(subscriber)n(-le)n(v)o(el)f(tasks.)42 b(It)26 b(also)g(answers)g(some)
g(common)e(questions)h(of)h(interest)f(to)0 2816 y(Mailman)20
b(list)h(members.)0 2963 y(Information)c(for)j(list)h(and)f(site)h
(administrators)e(is)i(pro)o(vided)c(in)k(other)e(documents.)0
3110 y(This)k(document)d(need)i(not)g(be)h(read)f(in)h(order)-5
b(.)31 b(If)23 b(you)e(are)i(simply)f(looking)f(for)h(an)g(answer)h(to)
f(a)h(speci\002c)g(question,)f(jump)g(to)h(the)0 3209
y(appropriate)18 b(place)i(and)f(references)g(to)i(other)e(sections)h
(will)h(be)f(pro)o(vided)e(if)i(necessary)g(or)g(potentially)f
(helpful.)0 3356 y Fh(Note:)31 b Fk(F)o(or)23 b(the)h(purposes)e(of)i
(this)g(document,)e(we)i(assume)g(that)f(the)h(reader)f(is)h(f)o
(amiliar)f(with)h(common)e(terms)i(related)f(to)h(email)0
3456 y(\(e)o(g:)39 b(Subject)27 b(line,)i(body)e(of)g(the)g(message\))g
(and)g(web)g(sites)i(\(e)o(g:)39 b(drop-do)n(wn)25 b(box,)j(b)n
(utton\))e(or)h(can)g(look)g(them)g(up.)47 b(W)-7 b(e)28
b(also)0 3555 y(assume)23 b(that)f(the)h(reader)e(can)i(already)e(use)i
(his)g(or)f(her)g(email)h(program)d(and)i(web)h(bro)n(wser)e(well)i
(enough)e(that)h(instructions)g(such)0 3655 y(as)g(\223send)e(email)h
(to)g(this)h(address\224)e(or)h(\223visit)g(this)h(web)f(page\224)f(or)
g(\223\002ll)i(in)f(the)g(form)f(pro)o(vided\224)e(are)j(clear)-5
b(.)28 b(If)20 b(you)g(are)h(not)g(f)o(amiliar)0 3755
y(with)h(these)f(actions,)h(you)e(may)h(w)o(ant)h(to)f(consult)g(other)
g(documentation)d(to)k(learn)f(ho)n(w)g(to)g(do)g(these)h(things)f
(with)h(your)e(particular)0 3854 y(setup.)0 4139 y Fg(1.1)100
b(Ac)n(kno)o(wledgements)0 4342 y Fk(Sections)26 b(of)f(this)h
(document)e(ha)n(v)o(e)h(been)g(borro)n(wed)f(from)g(the)i(List)h
(Administrator)d(Manual)h(found)f(in)h(Mailman)h(CVS,)g(which)0
4442 y(w)o(as)21 b(written)f(by)g(Barry)g(A.)g(W)-7 b(arsa)o(w)i(,)20
b(and)g(from)f(the)h(in-line)g(help)f(for)h(Mailman)g(2.1.)0
4589 y(The)27 b(rest)h(of)f(this)g(manual)g(has)g(been)g(written)g(by)f
(T)-6 b(erri)27 b(Oda.)46 b(T)-6 b(erri)27 b(has)h(been)e(maintaining)g
(mailing)g(lists)j(since)e(the)h(year)e(she)0 4688 y(attained)h(v)n
(oting)f(age)i(in)f(Canada,)i(although)c(the)j(tw)o(o)f(are)h(not)f
(related.)46 b(She)27 b(currently)f(o)o(v)o(ersees)g(the)i(mailing)e
(lists)j(at)f(Linux-)0 4788 y(chix.or)o(g,)c(as)j(well)f(as)h(se)n(v)o
(eral)e(smaller)h(serv)o(ers.)41 b(In)25 b(the)h(w)o(orld)f(outside)g
(of)h(list)h(administration,)e(T)-6 b(erri)25 b(is)i(doing)e(w)o(ork)g
(with)h(an)0 4887 y(arti\002cial)20 b(life)h(spam)f(detector)m(,)e(and)
i(is)h(actually)f(more)f(of)h(a)h(programmer)c(than)j(technical)f
(writer)-5 b(.)0 5034 y(Thanks)15 b(to)i(Mar)o(garet)d(McCarthy)-5
b(,)15 b(Jason)h(W)-7 b(alton)17 b(and)e(Barry)h(W)-7
b(arsa)o(w)17 b(for)e(their)h(help)g(in)h(proofreading)12
b(and)k(otherwise)f(impro)o(ving)0 5134 y(this)21 b(manual.)0
5281 y(Thanks)i(also)i(to)f(Ik)o(eda)f(Soji,)i(who)f(made)g(the)g
(Japanese)g(translation)f(of)h(this)g(document,)f(and)h(P)o(ablo)g
(Chamorro)e(C.,)j(who)f(made)0 5380 y(the)c(Spanish)g(translation.)p
0 5549 3901 4 v 0 5649 a Ff(2)3291 b(1)83 b(Introduction)p
eop end
%%Page: 3 3
TeXDict begin 3 2 bop 0 83 a Fg(1.2)100 b(What)28 b(is)g(a)g(mailing)h
(list?)0 286 y Fk(A)h(mailing)f(list)i(is)f(simply)f(a)h(list)h(of)e
(addresses)g(to)h(which)f(the)h(same)f(information)e(is)k(being)e
(sent.)53 b(If)29 b(you)g(were)g(a)h(magazine)0 386 y(publisher)m(,)e
(you)e(w)o(ould)h(ha)n(v)o(e)g(a)h(list)h(of)f(the)f(mailing)g
(addresses)h(of)f(all)h(the)g(subscribers)f(to)h(the)f(magazine.)46
b(In)27 b(the)h(case)g(of)g(an)0 485 y(electronic)22
b(mailing)g(list,)i(we)f(use)g(a)g(list)h(of)e(email)h(addresses)f
(from)g(people)f(interested)h(in)h(hearing)e(about)h(or)h(discussing)f
(a)h(gi)n(v)o(en)0 585 y(topic.)0 732 y(T)-7 b(w)o(o)20
b(common)f(types)h(of)g(email)g(mailing)f(lists)j(are)e(announcement)d
(lists)22 b(and)d(discussion)h(lists.)0 879 y(Announcement)j(lists)k
(are)f(used)g(so)g(that)g(one)f(person)g(or)h(group)e(can)i(send)f
(announcements)e(to)j(a)h(group)d(of)h(people,)h(much)f(lik)o(e)0
978 y(a)h(magazine)f(publisher')-5 b(s)25 b(mailing)g(list)i(is)g(used)
e(to)i(send)e(out)h(magazines.)41 b(F)o(or)25 b(e)o(xample,)h(a)g(band)
f(may)h(use)g(an)g(announcement)0 1078 y(mailing)19 b(list)j(to)e(let)h
(their)f(f)o(an)g(base)g(kno)n(w)f(about)g(their)h(upcoming)e
(concerts.)0 1225 y(A)25 b(discussion)e(list)i(allo)n(ws)g(a)f(group)e
(of)i(people)f(to)h(discuss)h(topics)f(amongst)f(themselv)o(es,)h(with)
g(e)n(v)o(eryone)d(able)j(to)g(send)g(mail)g(to)0 1324
y(the)19 b(list)h(and)f(ha)n(v)o(e)f(it)i(distrib)n(uted)e(to)h(e)n(v)o
(eryone)e(in)i(the)g(group.)k(This)c(discussion)g(may)f(also)i(be)f
(moderated,)e(so)i(only)f(selected)h(posts)0 1424 y(are)j(sent)h(on)e
(to)i(the)f(group)e(as)j(a)f(whole,)g(or)g(only)f(certain)h(people)f
(are)h(allo)n(wed)g(to)g(send)g(to)g(the)g(group.)29
b(F)o(or)22 b(e)o(xample,)f(a)h(group)f(of)0 1524 y(model)e(plane)h
(enthusiasts)g(might)g(use)g(a)h(discussion)e(mailing)h(list)h(to)f
(share)g(tips)h(about)e(model)h(construction)e(and)h(\003ying.)0
1670 y(Some)h(common)e(terms:)125 1881 y Fe(\017)41 b
Fk(A)20 b(\223post\224)g(typically)f(denotes)h(a)g(message)g(sent)h(to)
f(a)h(mailing)e(list.)26 b(\(Think)19 b(of)h(posting)f(a)i(message)f
(on)g(a)g(b)n(ulletin)g(board.\))125 2045 y Fe(\017)41
b Fk(People)19 b(who)h(are)g(part)g(of)g(an)g(electronic)f(mailing)h
(list)h(are)f(usually)g(called)g(the)g(list')-5 b(s)21
b(\223members\224)e(or)h(\223subscribers.)-6 b(\224)125
2210 y Fe(\017)41 b Fk(\223List)20 b(administrators\224)d(are)j(the)f
(people)g(in)g(char)o(ge)f(of)h(maintaining)f(that)h(one)g(list.)26
b(Lists)20 b(may)f(ha)n(v)o(e)g(one)g(or)g(more)f(adminis-)208
2309 y(trators.)125 2474 y Fe(\017)41 b Fk(A)21 b(list)h(may)e(also)h
(ha)n(v)o(e)g(people)e(in)i(char)o(ge)e(of)i(reading)e(posts)i(and)g
(deciding)e(if)i(the)o(y)f(should)g(be)h(sent)g(on)f(to)h(all)h
(subscribers.)208 2573 y(These)e(people)f(are)h(called)g(list)h
(moderators.)125 2738 y Fe(\017)41 b Fk(Often)29 b(more)g(than)h(one)f
(electronic)g(mailing)g(list)i(will)g(be)f(run)f(using)g(the)h(same)g
(piece)g(of)g(softw)o(are.)54 b(The)29 b(person)g(who)208
2837 y(maintains)24 b(the)h(softw)o(are)f(which)h(runs)f(the)h(lists)i
(is)e(called)g(the)g(\223site)h(administrator)-5 b(.)f(\224)38
b(Often)24 b(the)h(site)h(administrator)d(also)208 2937
y(administrates)c(indi)n(vidual)f(lists.)0 3221 y Fg(1.3)100
b(GNU)27 b(Mailman)0 3424 y Fk(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
3524 y(such)i(as)h(general)d(discussion)i(lists)h(and)f(announce-only)c
(lists.)35 b(Mailman)22 b(has)i(e)o(xtensi)n(v)o(e)d(features)i(which)f
(mak)o(e)h(it)g(good)f(for)g(list)0 3623 y(subscribers,)f(such)h(as)g
(easy)g(subscription)f(and)g(unsubscription,)f(pri)n(v)n(ac)o(y)g
(options,)h(and)g(the)h(ability)g(to)g(temporarily)e(stop)h(getting)0
3723 y(posts)f(from)g(the)g(list.)26 b(The)20 b(list)h(member)e
(features)g(are)h(co)o(v)o(ered)e(in)j(this)g(document.)0
3870 y(Mailman)f(also)h(has)g(man)o(y)f(features)g(which)h(mak)o(e)f
(it)i(attracti)n(v)o(e)e(to)h(list)h(and)e(site)i(administrators.)j
(These)c(features)f(are)h(co)o(v)o(ered)d(in)0 3969 y(the)i(list)h(and)
f(site)h(administrator)e(manuals.)0 4296 y Fl(2)120 b(T)-14
b(r)o(anslating)34 b(from)f(our)h(e)l(xamples)h(to)e(real)h(lists)0
4529 y Fk(Often,)29 b(it')-5 b(s)28 b(easier)f(to)h(simply)f(gi)n(v)o
(e)g(an)g(e)o(xample)f(than)h(e)o(xplain)f(e)o(xactly)g(ho)n(w)h(to)h
(\002nd)f(the)g(address)g(for)g(your)f(speci\002c)h(list.)48
b(As)0 4629 y(such,)21 b(we')o(ll)h(frequently)e(gi)n(v)o(e)g(e)o
(xamples)h(for)g(a)h(\002ctional)f(list)i(called)e Fd(LISTNAME@DOMAIN)g
Fk(whose)g(list)i(information)c(page)i(can)0 4728 y(be)f(found)f(at)h
Fd(http://WEBSER)l(VER/mailman/listin)o(f)n(o)o(/LI)o(STNAME)-6
b Fk(.)0 4875 y(Neither)25 b(of)g(these)g(are)g(real)g(addresses,)h(b)n
(ut)g(the)o(y)e(sho)n(w)h(the)g(form)f(of)h(a)h(typical)f(list)h
(address.)39 b(The)25 b(capital)g(letters)h(used)f(for)g(the)0
4975 y(list-speci\002c)c(parts)f(of)f(each)h(address)g(should)f(mak)o
(e)h(it)h(easier)f(to)g(see)h(what)f(should)f(be)h(changed)f(for)g
(each)h(list.)26 b(Although)18 b(speci\002c)0 5074 y(list)i
(con\002gurations)c(may)i(be)h(dif)n(ferent,)e(you)h(will)h(probably)e
(be)h(able)h(to)g(just)g(replace)f(the)g(w)o(ords)h(gi)n(v)o(en)e(in)i
(capital)g(letters)g(with)g(the)0 5174 y(appropriate)f(v)n(alues)i(for)
f(a)i(real)f(list:)0 5400 y Fh(LISTN)n(AME)44 b Fk(The)20
b(name)f(of)h(your)f(list.)p 0 5549 3901 4 v 0 5649 a
Ff(1.2)83 b(What)24 b(is)f(a)h(mailing)h(list?)2853 b(3)p
eop end
%%Page: 4 4
TeXDict begin 4 3 bop 0 83 a Fh(DOMAIN)42 b Fk(The)19
b(name)h(of)g(the)g(mail)h(serv)o(er)e(which)h(handles)f(that)h(list.)0
249 y Fh(WEBSER)-5 b(VER)43 b Fk(The)18 b(name)f(of)g(the)g(web)h(serv)
o(er)f(which)g(handles)f(the)i(list)h(web)e(interf)o(ace.)23
b(This)18 b(may)f(be)g(the)h(same)g(as)g(DOMAIN,)208
349 y(and)h(often)h(refers)f(to)i(the)f(same)g(machine,)f(b)n(ut)h
(does)g(not)g(ha)n(v)o(e)g(to)g(be)g(identical.)0 579
y(As)55 b(a)g(real-life)f(e)o(xample,)61 b(if)55 b(you)e(are)i
(interested)f(in)g(the)h(mailman-users)d(list,)64 b(you')l(d)53
b(mak)o(e)h(the)g(follo)n(wing)f(sub-)0 678 y(stitutions:)110
b(LISTN)m(AME=mailman-users,)70 b(DOMAIN=p)o(ython.or)o(g,)e(WEBSER)-7
b(VER=mail.p)o(ython.or)o(g.)149 b(As)63 b(such,)0 778
y(for)i(the)h Fd(mailman-users@p)n(ython.org)61 b Fk(mailing)66
b(list,)78 b(the)66 b(list)h(information)c(page)j(can)f(be)h(found)f
(at)h(the)g(URL)0 877 y Fd(http://mail.p)n(ython.org)o(/mail)o(man/)o
(li)o(stinf)m(o/ma)o(ilma)o(n-u)o(sers)-6 b Fk(.)54 b(\(These,)31
b(unlik)o(e)e(most)h(of)f(the)h(e)o(xamples)f(gi)n(v)o(en)f(in)i(this)g
(document,)0 977 y(are)20 b(real)g(addresses.\))0 1124
y(Most)j(lists)h(will)g(ha)n(v)o(e)e(this)h(information)e(stored)h(in)h
(the)g Fd(List-*:)30 b Fk(headers.)i(Man)o(y)21 b(mail)i(programs)e
(will)j(hide)e(these)h(by)g(def)o(ault,)f(so)0 1224 y(you)d(may)h(ha)n
(v)o(e)g(to)g(choose)f(to)i(vie)n(w)f(full)g(headers)f(before)g(you)g
(can)h(see)h(these)f(informational)e(headers.)0 1551
y Fl(3)120 b(Mailman')-6 b(s)32 b(interf)l(aces)0 1784
y Fk(Mailman)18 b(has)g(tw)o(o)h(dif)n(ferent)e(interf)o(aces)g(for)h
(the)h(list)g(subscriber:)k(the)c(web)f(interf)o(ace)f(and)h(the)h
(email)f(interf)o(ace.)23 b(Most)c(discussion)0 1883
y(list)h(subscribers)e(use)i(the)f(email)g(interf)o(ace,)f(since)i
(this)f(includes)g(the)g(email)g(address)f(you)h(use)g(to)g(send)g
(mail)g(to)h(all)f(the)g(subscribers)0 1983 y(of)h(that)g(list.)0
2130 y(The)26 b(interf)o(ace)f(you)g(use)h(for)f(changing)f(options)h
(is)i(lar)o(gely)d(a)j(matter)e(of)h(preference,)f(since)h(most)g(\(b)n
(ut)f(not)h(all\))g(of)g(the)g(options)0 2230 y(which)16
b(can)h(be)f(changed)f(from)h(the)g(web)h(interf)o(ace)f(can)g(also)h
(be)f(changed)f(by)i(email.)23 b(Usually)17 b(it)g(is)h(easier)f(to)f
(use)h(the)g(web)f(interf)o(ace)0 2329 y(for)25 b(changing)e(options,)i
(since)h(the)f(web)g(interf)o(ace)g(pro)o(vides)e(instructions)i(as)h
(you)e(go,)i(b)n(ut)f(there)g(are)g(times)h(when)f(people)f(may)0
2429 y(prefer)19 b(the)h(email)g(interf)o(ace,)f(so)i(both)e(are)i(pro)
o(vided.)0 2714 y Fg(3.1)100 b(The)28 b(w)o(eb)h(interf)m(ace)0
2917 y Fk(The)23 b(web)h(interf)o(ace)e(of)i(Mailman)f(is)h(its)h
(selling)e(point)g(for)g(man)o(y)f(people,)h(since)h(it)g(mak)o(es)g
(it)g(much)f(easier)h(for)e(subscribers)h(and)0 3016
y(administrators)c(to)h(see)h(which)f(options)f(are)h(a)n(v)n(ailable,)
f(and)h(what)g(these)h(options)e(do.)0 3163 y(Ev)o(ery)g(mailing)i
(list)g(is)h(also)f(accessible)g(by)g(a)g(number)e(of)i(web)f(pages.)27
b(Note)20 b(that)h(the)g(e)o(xact)g(URLs)g(are)g(con\002gurable)d(by)j
(the)g(site)0 3263 y(administrator)m(,)f(so)j(the)o(y)e(may)h(be)g(dif)
n(ferent)f(than)g(what')-5 b(s)23 b(described)e(belo)n(w)-5
b(.)29 b(W)-7 b(e')o(ll)24 b(describe)d(the)h(most)g(common)e
(con\002guration,)0 3362 y(b)n(ut)g(check)g(with)g(your)f(site)i
(administrator)d(or)i(hosting)g(service)f(for)h(details.)0
3592 y Fh(List)h(inf)n(ormation)e(\(listinf)n(o\))h(page)140
b Fe(\017)41 b Fk(Usually)31 b(found)e(at)j Fd(http://WEBSER)l
(VER/mailman/li)o(stinf)m(o/)o(LIST)o(NAME)26 b Fk(\(for)k(e)o(xam-)390
3692 y(ple,)20 b Fd(http://lists)o(.e)n(xample)o(.com/mailman)o(/li)o
(stinf)m(o/)o(m)o(ylist)-6 b Fk(\))307 3825 y Fe(\017)41
b Fk(The)25 b(listinfo)g(page)g(is)h(the)g(starting)f(point)f(for)h
(the)h(subscriber)e(interf)o(ace.)39 b(As)27 b(one)d(w)o(ould)h(assume)
g(from)g(the)g(name)390 3924 y(it')-5 b(s)21 b(gi)n(v)o(en,)d(it)j
(contains)e(information)e(about)i(the)g(LISTN)m(AME)g(list.)26
b(Usually)20 b(all)g(the)g(other)e(subscriber)h(pages)g(can)h(be)390
4024 y(accessed)g(from)g(this)g(point,)f(so)i(you)e(really)h(only)f
(need)h(to)g(kno)n(w)f(this)i(one)f(address.)0 4190 y
Fh(Member)h(options)f(page)140 b Fe(\017)41 b Fk(Usually)17
b(found)e(at)i Fd(http://WEBSER)l(VER/mailman/opt)o(ion)o(s/LIS)o
(TNAME/EMAI)o(L)11 b Fk(\(F)o(or)16 b(e)o(xample,)390
4290 y Fd(http://lists)o(.e)n(xample)o(.com/mailman)o(/op)o(tio)o(ns/m)
o(ylist/)o(kath)m(y@here)n(.com)-6 b Fk(\))307 4422 y
Fe(\017)41 b Fk(This)22 b(page)f(can)h(also)g(be)g(accessed)f(by)h
(going)e(to)i(the)g(listinfo)g(page)f(and)g(entering)f(your)h(email)h
(address)f(into)h(the)f(box)390 4522 y(beside)f(the)g(b)n(utton)g(mark)
o(ed)e(\223Unsubscribe)h(or)h(Edit)g(Options\224)g(\(this)g(is)h(near)f
(the)g(bottom)f(of)h(the)g(page\).)307 4655 y Fe(\017)41
b Fk(The)20 b(member)f(options)g(page)h(allo)n(ws)g(you)f(to)i(log)f
(in/out)f(and)h(change)f(your)f(list)k(settings,)e(as)h(well)g(as)g
(unsubscribe)d(or)390 4755 y(get)i(a)h(cop)o(y)e(of)h(your)f(passw)o
(ord)h(mailed)f(to)i(you.)307 4887 y Fe(\017)41 b Fh(T)-8
b(o)20 b(log)f(in)h(to)f(y)n(our)g(member)h(options)f(page)p
Fk(:)24 b(If)19 b(you)g(are)g(not)g(already)f(logged)g(in,)h(there)g
(will)h(be)f(a)h(box)e(near)h(the)g(top)390 4987 y(for)h(you)g(to)h
(enter)f(your)g(passw)o(ord.)26 b(\(If)20 b(you)g(do)g(not)g(kno)n(w)g
(your)f(passw)o(ord,)h(see)i(Section)e(6.1)g(for)g(more)g(information)
390 5087 y(on)g(getting)f(your)g(passw)o(ord.\))24 b(Enter)c(your)f
(passw)o(ord)g(in)i(the)f(box)f(and)h(press)g(the)g(b)n(utton.)307
5220 y Fe(\017)41 b Fk(Once)20 b(you)f(are)i(logged)d(in,)i(you)g(will)
h(be)f(able)g(to)g(vie)n(w)g(and)g(change)f(all)i(your)d(list)k
(settings.)p 0 5549 3901 4 v 0 5649 a Ff(4)2975 b(3)83
b(Mailman')l(s)25 b(interf)n(aces)p eop end
%%Page: 5 5
TeXDict begin 5 4 bop 0 83 a Fh(List)21 b(Ar)o(chi)o(v)o(es)141
b Fe(\017)41 b Fk(Usually)47 b(found)e(at)j Fd(http://WEBSER)l
(VER/piper)r(mai)o(l/L)o(ISTNA)o(ME)42 b Fk(if)48 b(the)f(list)h(is)g
(publicly)e(archi)n(v)o(ed,)390 183 y(and)d Fd(http://WEBSER)l
(VER/mailman/priv)n(ate/)o(LIS)o(TNAME)37 b Fk(if)44
b(the)f(list)h(is)f(pri)n(v)n(ately)f(archi)n(v)o(ed.)91
b(\(F)o(or)42 b(e)o(xample,)390 282 y Fd(http://lists)o(.e)n(xample)o
(.com/pipe)o(r)r(mai)o(l/m)o(ylist)14 b Fk(or)20 b Fd(http://lists)o
(.e)n(xample)o(.com/mailman/)o(pr)q(i)o(v)n(ate/m)o(yli)o(st)-6
b Fk(\))307 415 y Fe(\017)41 b Fk(The)21 b(list)h(archi)n(v)o(e)e
(pages)g(ha)n(v)o(e)h(copies)f(of)h(the)g(posts)g(sent)h(to)f(the)g
(mailing)f(list,)i(usually)f(grouped)d(by)j(month.)26
b(In)21 b(each)390 515 y(monthly)e(group,)f(the)i(posts)h(are)f
(usually)f(inde)o(x)o(ed)f(by)i(author)m(,)f(date,)g(thread,)g(and)h
(subject.)307 648 y Fe(\017)41 b Fh(Note:)24 b Fk(Pipermail)c(is)h(the)
f(name)f(of)g(the)h(def)o(ault)g(archi)n(v)o(er)e(that)i(comes)f(with)h
(Mailman.)25 b(Other)19 b(archi)n(v)o(e)g(programs)f(are)390
747 y(a)n(v)n(ailable.)307 880 y Fe(\017)41 b Fk(If)23
b(the)f(archi)n(v)o(e)f(is)j(pri)n(v)n(ate,)e(you)f(will)j(need)e(to)g
(supply)g(your)f(subscribed)g(email)i(address)f(and)g(your)f(passw)o
(ord)h(to)h(log)390 980 y(in.)i(\(See)c(Section)e(6.1)h(for)f(more)h
(information)e(on)h(getting)h(your)f(passw)o(ord.\))0
1265 y Fg(3.2)100 b(The)28 b(email)h(interf)m(ace)0 1467
y Fk(Ev)o(ery)19 b(mailing)g(list)i(has)g(a)f(set)h(of)f(email)g
(addresses)g(to)g(which)g(messages)g(can)g(be)g(sent.)25
b(There')-5 b(s)20 b(al)o(w)o(ays)h(one)e(address)h(for)g(posting)0
1567 y(messages)28 b(to)f(the)h(list,)i(one)d(address)g(to)g(which)g
(bounces)g(are)g(sent,)i(and)e(addresses)g(for)g(processing)f(email)i
(commands.)45 b(F)o(or)27 b(a)0 1667 y(\002ctional)20
b(mailing)f(list)j(called)e Fd(m)o(ylist@e)n(xample)o(.com)p
Fk(,)e(you')l(d)g(\002nd)i(these)g(addresses:)125 1897
y Fe(\017)41 b Fd(m)o(ylist@e)n(xample)o(.com)18 b Fk(\226)i(this)h(is)
g(the)f(email)g(address)g(people)f(should)g(use)i(for)e(ne)n(w)h
(postings)g(to)g(the)g(list.)125 2063 y Fe(\017)41 b
Fd(m)o(ylist-join@e)n(xample)o(.com)c Fk(\226)k(by)f(sending)g(a)h
(message)g(to)g(this)g(address,)k(a)d(ne)n(w)e(member)g(can)g(request)h
(subscrip-)208 2162 y(tion)c(to)h(the)h(list.)79 b(Both)38
b(the)g Fd(Subject:)59 b Fk(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
2262 y(subscribe@e)o(xample.com)16 b(is)21 b(an)f(alias)h(for)f(the)g
(-join)g(address.)125 2428 y Fe(\017)41 b Fd(m)o(ylist-lea)o(v)n(e@e)n
(xample)o(.com)18 b Fk(\226)k(by)f(sending)g(a)i(message)f(to)g(this)g
(address,)g(a)g(member)f(can)h(request)f(unsubscription)f(from)208
2528 y(the)k(list.)40 b(As)25 b(with)g(the)g(-join)f(address,)h(the)g
Fd(Subject:)33 b Fk(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 2627 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 2793 y Fe(\017)41 b Fd(m)o(ylist-o)o(wner@e)n(xample)o
(.com)11 b Fk(\226)16 b(This)f(address)g(reaches)g(the)g(list)h(o)n
(wner)e(and)h(list)i(moderators)c(directly)-5 b(.)22
b(This)16 b(is)g(the)f(address)208 2893 y(you)k(use)h(if)h(you)e(need)h
(to)g(contact)f(the)i(person)e(or)h(people)f(in)h(char)o(ge.)125
3059 y Fe(\017)41 b Fd(m)o(ylist-request@e)n(xample)o(.com)23
b Fk(\226)k(This)g(address)g(reaches)g(a)g(mail)h(robot)d(which)i
(processes)g(email)g(commands)f(that)h(can)208 3159 y(be)i(used)g(to)g
(set)h(member)e(subscription)g(options,)j(as)f(well)f(as)h(process)f
(other)g(commands.)50 b(A)30 b(list)h(of)e(members')f(email)208
3258 y(commands)18 b(is)j(pro)o(vided)d(in)i(Appendix)e(A.)125
3424 y Fe(\017)41 b Fd(m)o(ylist-bounces@e)n(xample)o(.com)16
b Fk(\226)k(This)h(address)f(is)h(used)f(in)g(Mailman')-5
b(s)20 b(automatic)f(bounce)g(processing.)125 3590 y
Fe(\017)41 b Fd(m)o(ylist-con\002r)r(m@e)n(xample)o(.com)18
b Fk(\226)j(This)g(address)f(is)i(used)f(for)f(processing)f
(con\002rmation)g(messages)i(for)f(subscription)f(and)208
3690 y(unsubscription)e(requests.)0 3920 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 4019 y(with)i(older)g(v)o(ersions)f(of)h
(Mailman.)0 4166 y(F)o(or)g(changing)e(options,)h(we)i(use)f(the)g
Fd(LISTNAME-request)e Fk(address)h(\(for)h(e)o(xample,)e
Fd(m)o(ylist-request@e)n(xample)o(.com)p Fk(\).)0 4313
y(Commands)i(can)g(appear)g(in)h(the)g(subject)g(line)g(or)g(the)g
(body)e(of)i(the)g(message.)27 b(Each)20 b(command)f(should)h(be)h(on)g
(a)g(separate)f(line.)28 b(If)0 4413 y(your)18 b(mail)h(program)e
(automatically)h(appends)g(a)h(signature)f(to)i(your)e(messages,)h(you)
f(may)h(w)o(ant)g(to)h(put)e(the)i(w)o(ord)e(\223)p Fc(end)r
Fk(\224)h(\(without)0 4512 y(the)k(quotes\))f(on)h(a)g(separate)g(line)
g(after)g(your)f(other)g(commands.)32 b(The)23 b Fc(end)h
Fk(command)d(tells)j(Mailman)f(not)g(to)g(process)f(the)i(email)0
4612 y(after)c(that)g(point.)0 4759 y(The)c(most)h(important)e(command)
g(is)i(probably)e(the)h(\223)p Fc(help)p Fk(\224)g(command,)f(since)i
(it)h(mak)o(es)e(Mailman)g(return)g(a)h(message)f(full)h(of)f(useful)0
4859 y(information)i(about)h(the)h(email)g(commands)f(and)h(directions)
f(to)h(the)g(web)g(interf)o(ace.)0 5005 y(Quick)h(references)f(to)i
(the)g(subscriber)f(commands)f(ha)n(v)o(e)h(been)g(pro)o(vided)e(in)j
(Appendices)e(A)i(and)f(B.)31 b(\(These)21 b(ha)n(v)o(e)g(been)g
(slightly)0 5105 y(adapted)e(from)g(the)h(output)f(of)h(the)g
Fc(help)g Fk(command.\))p 0 5549 3901 4 v 0 5649 a Ff(3.2)83
b(The)24 b(email)g(interf)n(ace)2952 b(5)p eop end
%%Page: 6 6
TeXDict begin 6 5 bop 0 86 a Fl(4)120 b(I)33 b(need)j(to)e(talk)f(to)h
(a)f(human!)0 319 y Fk(If)25 b(you)g(ha)n(v)o(e)g(an)o(y)f(trouble)g
(with)i(an)o(y)e(of)i(these)f(commands,)g(you)f(can)i(al)o(w)o(ays)f
(reach)g(the)h(person)e(or)h(people)f(in)i(char)o(ge)e(of)h(a)g(list)0
419 y(by)h(using)f(the)h(list)h(administrator)d(email)i(address.)42
b(The)26 b(list)h(administrators)d(can)i(help)f(you)g(\002gure)h(out)f
(ho)n(w)h(to)g(do)f(something,)0 518 y(subscribe/unsubscribe)17
b(you,)i(or)g(change)g(your)g(settings)h(if)g(you)f(are)h(unable)f(to)h
(change)f(them)g(yourself)g(for)g(some)h(reason.)k(Please)0
618 y(remember)f(that)h(man)o(y)f(mailing)h(list)i(administrators)d
(are)h(v)n(olunteers)f(who)h(are)h(donating)d(their)i(spare)g(time)h
(to)g(run)e(the)i(list,)h(and)0 718 y(the)o(y)19 b(may)h(be)g(v)o(ery)f
(b)n(usy)h(people.)0 865 y(This)k(list)h(administrator)e(email)h
(address)g(is)h(in)f(the)g(form)f Fd(LISTNAME-o)o(wner@DOMAIN)p
Fk(,)e(where)j(LISTN)m(AME)f(is)i(the)f(name)g(of)0 964
y(the)d(list)i(\(e)o(g:)j(mailman-users\))20 b(and)h(DOMAIN)g(is)h(the)
f(name)g(of)g(the)g(serv)o(er)g(\(e)o(g:)26 b(p)o(ython.or)o(g\).)e
(This)e(email)f(address,)g(along)f(with)0 1064 y(the)f(email)g
(addresses)g(of)f(speci\002c)i(administrators,)d(is)j(gi)n(v)o(en)e(on)
g(the)h(bottom)f(of)h(the)g(list)h(information)d(pages.)24
b(See)19 b(Section)g(3.1)f(for)0 1163 y(more)h(information)f(on)i
(\002nding)f(the)h(list)h(information)d(page)i(for)f(your)g(list)0
1491 y Fl(5)120 b(Subscr)r(ibing)34 b(and)g(unsubscr)r(ibing)0
1724 y Fk(Since)25 b(subscribing)f(\(joining\))f(and)i(unsubscribing)e
(\(lea)n(ving\))g(lists)k(are)e(often)g(the)g(only)f(things)h(a)h(list)
g(member)e(needs)h(to)g(kno)n(w)-5 b(,)0 1823 y(these)20
b(can)g(both)g(be)g(done)f(without)g(requiring)g(you)g(to)h(kno)n(w)f
(a)i(passw)o(ord.)0 2108 y Fg(5.1)100 b(Ho)o(w)28 b(do)g(I)f(join)i(a)f
(list?)35 b(\(subscr)q(ibe\))0 2311 y Fk(There)19 b(are)h(tw)o(o)h
(common)d(w)o(ays)j(you)e(can)h(subscribe)f(to)i(a)f(Mailman)g(mailing)
f(list.)0 2458 y(Using)h(the)g(web)g(interf)o(ace:)104
2671 y(1.)41 b(Go)h(to)h(the)g(list)g(information)e(page)h(for)g(the)g
(list)i(you)e(w)o(ant)h(to)f(join.)92 b(\(This)43 b(will)g(probably)e
(be)h(something)f(lik)o(e)208 2771 y Fd(http://WEBSER)l(VER/mailman/li)
o(stin)o(f)n(o/)o(LIS)o(TNAME)-6 b Fk(\))104 2937 y(2.)41
b(Look)19 b(for)g(the)h(section)g(mark)o(ed)f(\223Subscribing)f(to)j
(LISTN)m(AME\224)e(and)h(\002ll)h(in)f(the)g(box)o(es.)k(Y)-9
b(ou)20 b(can)g(\002ll)h(in)f(the)h(follo)n(wing:)307
3103 y Fe(\017)41 b Fk(Y)-9 b(ou)20 b Fc(must)g Fk(enter)g(your)f
(email)h(address.)307 3236 y Fe(\017)41 b Fk(Y)-9 b(ou)20
b(may)g(choose)f(to)h(supply)f(your)g(real)h(name.)307
3369 y Fe(\017)41 b Fk(Y)-9 b(ou)20 b(may)g(choose)f(a)h(passw)o(ord.)
25 b(If)20 b(you)f(do)h(not)g(choose)f(one,)g(Mailman)h(will)h
(generate)e(one)g(for)h(you.)390 3485 y Fh(W)-5 b(ar)o(ning:)34
b Fk(Do)25 b(NO)m(T)g(use)h(a)f(v)n(aluable)f(passw)o(ord,)h(since)h
(this)f(passw)o(ord)g(may)f(occasionally)g(be)h(mailed)g(to)g(you)f(in)
390 3584 y(plain)c(te)o(xt.)307 3717 y Fe(\017)41 b Fk(If)26
b(the)g(list)h(supports)d(more)h(than)h(one)f(language,)g(you)g(may)h
(be)f(able)h(to)g(choose)f(your)g(preferred)e(language.)40
b Fh(Note:)390 3817 y Fk(This)23 b(setting)f(does)g(not)g(af)n(fect)g
(posts)h(to)g(the)f(list,)i(only)d(Mailman)h(te)o(xts)h(that)f(come)g
(from)f(the)i(list)g(softw)o(are,)g(such)f(as)390 3917
y(your)d(member)g(options)g(page.)104 4083 y(3.)41 b(Press)32
b(the)g(subscribe)f(b)n(utton.)60 b(A)32 b(ne)n(w)g(page)f(should)g
(appear)g(telling)h(you)f(that)h(your)e(subscription)h(request)g(has)h
(been)208 4182 y(recei)n(v)o(ed.)55 b(This)31 b(page)f(will)i(pro)o
(vide)d(you)h(with)h(further)e(instructions,)j(such)f(as)h(the)f(need)f
(to)h(w)o(ait)g(for)g(and)f(reply)g(to)h(a)208 4282 y(con\002rmation)18
b(messages,)i(depending)d(on)j(the)g(list')-5 b(s)22
b(subscription)d(policies.)0 4495 y(Using)h(the)g(email)h(interf)o
(ace:)104 4708 y(1.)41 b(Open)19 b(a)i(mail)f(program)e(which)i(sends)g
(mail)g(from)g(the)g(address)f(you)h(w)o(ant)g(to)g(subscribe.)104
4875 y(2.)41 b(Send)23 b(a)h(mail)f(to)h(the)g(list)g(subscription)e
(address,)i(which)f(will)h(be)g(in)f(the)h(form)e Fd
(LISTNAME-join@DOMAIN)p Fk(.)f(The)i(subject)208 4974
y(and)c(body)g(of)h(the)g(message)g(will)h(be)f(ignored,)e(so)j(it)g
(doesn')o(t)d(matter)i(what)h(you)e(put)h(there.)0 5187
y(After)30 b(follo)n(wing)f(one)h(of)g(these)h(sets)g(of)g
(instructions)e(\(you)g(don')o(t)g(need)h(to)h(do)f(both!\),)h(there)f
(are)g(a)h(fe)n(w)g(possible)f(outcomes)0 5287 y(depending)18
b(upon)g(the)j(settings)f(for)g(that)g(list.)p 0 5549
3901 4 v 0 5649 a Ff(6)2592 b(5)83 b(Subscr)q(ibing)24
b(and)g(unsubscr)q(ibing)p eop end
%%Page: 7 7
TeXDict begin 7 6 bop 125 83 a Fe(\017)41 b Fk(Y)-9 b(ou)17
b(may)h(recei)n(v)o(e)f(an)i(email)f(message)g(asking)g(for)f
(con\002rmation)f(that)j(you)e(really)h(w)o(ant)h(to)f(be)g(subscribed)
f(to)i(the)f(list.)25 b(This)208 183 y(is)c(to)f(pre)n(v)o(ent)f(an)o
(yone)g(from)g(subscribing)g(you)g(to)i(lists)h(without)d(your)h
(permission.)k(F)o(ollo)n(w)c(the)g(instructions)g(gi)n(v)o(en)f(in)i
(the)208 282 y(message)f(to)g(con\002rm)f(your)g(wish)h(to)h(be)f
(subscribed.)125 448 y Fe(\017)41 b Fk(A)20 b(moderator)e(may)i(also)g
(need)g(to)g(con\002rm)f(your)g(subscription)g(if)h(you)g(are)g
(subscribing)e(to)j(a)f(closed)g(list.)125 614 y Fe(\017)41
b Fk(Or)20 b(you)f(may)h(ha)n(v)o(e)g(to)g(w)o(ait)h(for)e(a)i
(moderator)d Fc(and)j Fk(follo)n(w)f(the)g(instructions)f(in)i(the)f
(con\002rmation)e(mail.)0 828 y(Once)26 b(this)g(is)h(done,)f(you)f
(will)i(lik)o(ely)f(recei)n(v)o(e)f(another)f(message)i(welcoming)f
(you)g(to)h(the)g(list.)43 b(This)27 b(message)e(contains)h(some)0
927 y(useful)21 b(information)e(including)h(your)g(list)j(passw)o(ord)e
(and)g(some)g(quick)g(links)h(for)e(changing)g(your)g(options,)h(so)h
(you)f(may)g(w)o(ant)g(to)0 1027 y(sa)n(v)o(e)f(it)h(for)f(later)g
(reference.)0 1174 y Fh(Note:)35 b Fk(Subscribing)23
b(can)j(be)f(done)f(in)i(other)e(w)o(ays)i(as)g(well.)41
b(See)26 b(Appendix)e(A)h(for)g(more)g(adv)n(anced)e(email)j
(subscribing)d(com-)0 1273 y(mands.)0 1558 y Fg(5.2)100
b(Ho)o(w)28 b(do)g(I)f(lea)n(v)n(e)i(a)f(list?)34 b(\(unsubscr)q(ibe\))
0 1761 y Fk(Don')o(t)29 b(w)o(ant)h(to)f(be)h(on)g(a)g(list)h(an)o(y)e
(more?)53 b(If)30 b(you')l(re)e(just)i(going)e(on)i(v)n(acation)e(or)i
(are)g(too)f(b)n(usy)h(to)g(read)f(mails)h(and)f(w)o(ant)h(to)0
1861 y(temporarily)21 b(turn)h(them)h(of)n(f,)f(you)g(may)h(w)o(ant)g
(to)g(stop)g(mail)g(deli)n(v)o(ery)e(rather)i(than)f(unsubscribing.)31
b(This)23 b(means)f(you)g(k)o(eep)h(your)0 1960 y(passw)o(ord)i(and)h
(other)f(settings)i(so)f(you)f(can,)i(for)f(e)o(xample,)g(still)h(ha)n
(v)o(e)e(access)i(to)f(pri)n(v)n(ate)f(list)i(archi)n(v)o(es.)42
b(If)26 b(this)g(is)h(what)f(you')l(d)0 2060 y(prefer)m(,)18
b(see)j(Section)f(7.1)f(for)h(instructions)f(on)h(disabling)f(mail)i
(deli)n(v)o(ery)d(temporarily)-5 b(.)0 2207 y(If)20 b(you)f(actually)h
(w)o(ant)g(to)h(lea)n(v)o(e)f(the)g(list,)h(there)f(are)g(tw)o(o)g
(common)f(w)o(ays)h(you)f(can)h(unsubscribe)f(from)g(a)h(Mailman)g
(mailing)f(list.)0 2354 y(Using)h(the)g(web)g(interf)o(ace:)104
2567 y(1.)41 b(Go)f(to)h(the)f(list)i(information)c(page)i(for)g(the)g
(list)i(you)d(w)o(ant)i(to)f(lea)n(v)o(e.)86 b(\(This)40
b(will)i(probably)c(be)i(something)f(lik)o(e)208 2667
y Fd(http://WEBSER)l(VER/mailman/li)o(stin)o(f)n(o/)o(LIS)o(TNAME)-6
b Fk(\))104 2833 y(2.)41 b(Look)19 b(for)g(the)h(section)g(mark)o(ed)f
(\223LISTN)m(AME)h(subscribers\224)f(\(usually)g(found)f(near)i(the)g
(bottom)f(of)h(the)g(page\).)104 2999 y(3.)41 b(There)17
b(should)g(be)h(a)g(b)n(utton)f(mark)o(ed)g(\223Unsubscribe)g(or)g
(Edit)h(Options.)-6 b(\224)24 b(Enter)18 b(your)e(email)i(address)g(in)
g(the)g(box)f(beside)h(this)208 3098 y(b)n(utton)h(and)g(press)i(the)f
(b)n(utton.)104 3264 y(4.)41 b(Y)-9 b(ou)18 b(should)g(be)h(brought)d
(to)j(a)h(ne)n(w)e(page)h(which)f(has)h(an)g(\223Unsubscribe\224)e(b)n
(utton.)24 b(Press)19 b(it)h(to)f(unsubscribe)e(and)h(follo)n(w)h(the)
208 3364 y(instructions)g(gi)n(v)o(en.)0 3577 y(Using)h(the)g(email)h
(interf)o(ace:)104 3791 y(1.)41 b(Open)19 b(a)i(mail)f(program)e(which)
i(sends)g(mail)g(from)g(the)g(address)f(you)h(w)o(ant)g(to)g
(unsubscribe.)104 3957 y(2.)41 b(Send)19 b(a)i(mail)f(to)h(the)f(list)h
(unsubscribe)e(address,)g(which)h(will)h(be)f(of)g(the)g(form)f
Fd(LISTNAME-lea)o(v)n(e@DOMAIN)p Fk(.)e(The)j(subject)208
4056 y(and)f(body)g(of)h(this)h(message)f(will)h(be)f(ignored,)e(so)i
(it)h(doesn')o(t)e(matter)h(what)g(you)f(put)h(there.)0
4270 y(After)26 b(follo)n(wing)e(one)i(of)g(these)g(sets)h(of)f
(instructions)f(\(you)g(don')o(t)f(need)i(to)g(do)g(both!\),)f(you)h
(will)g(be)g(sent)h(a)f(con\002rmation)e(mail)0 4369
y(and)32 b(must)h(follo)n(w)f(the)g(instructions)g(gi)n(v)o(en)g(in)g
(that)h(mail)g(to)g(complete)e(the)i(unsubscription.)60
b(This)33 b(is)h(to)e(stop)h(people)f(from)0 4469 y(unsubscribing)d
(you)i(without)h(your)f(permission.)59 b(In)32 b(addition,)h(a)f
(moderator)e(may)i(need)f(to)h(appro)o(v)o(e)e(your)g(unsubscription.)0
4569 y(\(Administrator)n(-appro)o(v)o(ed)15 b(unsubscriptions)j(are)i
(uncommon.\))0 4715 y(If)i(you)g(do)g(not)g(recei)n(v)o(e)g(this)h
(con\002rmation)d(mail)j(with)f(instructions,)g(mak)o(e)g(sure)g(that)h
(you)f(typed)f(your)g(email)i(address)f(correctly)0 4815
y(\(if)g(you)e(were)i(using)f(the)h(web)g(interf)o(ace)e(to)i
(unsubscribe\))e(and)h(that)h(the)f(address)h(you)e(tried)i(to)g
(unsubscribe)e(is,)i(indeed,)f(actually)0 4915 y(subscribed)f(to)h
(that)h(list.)29 b(F)o(or)21 b(security)g(reasons,)f(Mailman)h
(generates)f(the)i(same)f(member)f(options)g(page)h(re)o(gardless)f(of)
h(whether)0 5014 y(the)f(address)g(entered)f(is)i(subscribed)e(or)h
(not.)25 b(This)20 b(means)g(that)h(people)e(cannot)g(use)i(this)f
(part)g(of)g(the)g(web)h(interf)o(ace)e(to)h(\002nd)g(out)g(if)0
5114 y(someone)f(is)i(subscribed)e(to)h(the)g(list,)h(b)n(ut)g(it)g
(also)f(means)g(that)g(it')-5 b(s)22 b(hard)d(to)h(tell)h(if)f(you)g
(just)g(made)g(a)h(typo.)0 5261 y(Once)d(your)f(unsubscription)e(has)k
(been)e(processed,)g(you)h(will)h(will)f(probably)e(recei)n(v)o(e)h
(another)g(message)h(con\002rming)e(your)h(unsub-)0 5360
y(scription)i(from)g(the)i(list,)g(and)e(at)i(that)f(point)g(you)f
(should)g(stop)h(recei)n(ving)f(messages.)p 0 5549 3901
4 v 0 5649 a Ff(5.2)83 b(Ho)o(w)23 b(do)h(I)f(lea)n(v)n(e)h(a)f(list?)
29 b(\(unsubscr)q(ibe\))2338 b(7)p eop end
%%Page: 8 8
TeXDict begin 8 7 bop 0 83 a Fk(If)25 b(you)g(wish)h(to)g(skip)g(the)f
(con\002rmation)f(process)h(\(for)f(e)o(xample,)i(you)e(might)h(be)h
(unsubscribing)d(an)i(address)h(which)f(no)g(longer)0
183 y(w)o(orks\),)j(it)f(is)h(possible)f(to)g(bypass)f(it)i(by)e(using)
h(your)e(passw)o(ord)h(instead)h(and)g(either)f(logging)f(in)i(to)g
(your)f(options)g(page)g(using)0 282 y(it)d(\(See)g(Section)f(3.1\),)g
(or)h(sending)e(it)j(with)f(your)e(email)i(commands)e(to)i(LISTN)m
(AME-request)d(\(See)j(Appendix)d(A)k(for)e(adv)n(anced)0
382 y(email)e(unsubscription)e(commands\).)23 b(See)d(Section)g(6.1)g
(for)f(more)h(information)d(on)j(getting)g(your)f(passw)o(ord.)0
709 y Fl(6)120 b(P)-5 b(ass)l(w)o(ords)0 942 y Fk(Y)c(our)19
b(passw)o(ord)h(w)o(as)h(either)f(set)h(by)e(you)h(or)g(generated)e(by)
i(Mailman)g(when)f(you)g(subscribed.)24 b(Y)-9 b(ou)20
b(probably)e(got)i(a)g(cop)o(y)g(of)f(it)i(in)0 1042
y(a)i(welcome)g(message)g(sent)g(when)g(you)f(joined)g(the)h(list,)i
(and)d(you)g(may)h(also)g(recei)n(v)o(e)f(a)i(reminder)d(of)i(it)g(e)n
(v)o(ery)f(month.)32 b(It)24 b(is)g(used)0 1141 y(to)d(v)o(erify)e
(your)g(identity)h(to)g(Mailman)g(so)h(that)g(only)e(the)i(holder)e(of)
h(the)h(passw)o(ord)f(\(you!\))k(and)c(the)g(administrators)f(can)i
(vie)n(w)f(and)0 1241 y(change)f(your)g(settings.)0 1388
y Fh(W)-5 b(ar)o(ning:)24 b Fk(Do)c(NO)m(T)g(use)h(a)f(v)n(aluable)f
(passw)o(ord)h(for)f(Mailman,)h(since)g(it)h(can)f(be)g(sent)h(in)f
(plain)g(te)o(xt)g(to)g(you.)0 1673 y Fg(6.1)100 b(Ho)o(w)28
b(do)g(I)f(get)i(m)o(y)e(pass)m(w)o(ord?)0 1875 y Fk(If)19
b(you')l(v)o(e)d(for)o(gotten)g(your)i(passw)o(ord)g(and)g(ha)n(v)o
(en')o(t)f(sa)n(v)o(ed)h(the)h(welcome)f(message)g(or)h(an)o(y)f
(reminder)f(messages,)i(you)f(can)g(al)o(w)o(ays)0 1975
y(get)i(a)h(reminder)d(through)g(the)j(web)f(interf)o(ace:)104
2204 y(1.)41 b(Go)25 b(to)h(the)f(list)i(information)c(page)h(for)h
(the)h(list)g(from)f(which)g(you)f(wish)i(to)g(get)f(your)f(passw)o
(ord)h(\(This)g(will)h(probably)e(be)208 2304 y(something)18
b(lik)o(e)j Fd(http://WEBSER)l(VER/mailman/li)o(stinf)m(o/)o(LIST)o
(NAME)-6 b Fk(\))104 2470 y(2.)41 b(Look)26 b(for)h(the)g(section)h
(mark)o(ed)e(\223LISTN)m(AME)h(subscribers\224)f(\(this)i(section)f(is)
i(usually)e(found)e(near)i(the)h(bottom)e(of)i(the)208
2570 y(page\).)104 2735 y(3.)41 b(There)17 b(should)g(be)h(a)g(b)n
(utton)f(mark)o(ed)g(\223Unsubscribe)g(or)g(Edit)h(Options.)-6
b(\224)24 b(Enter)18 b(your)e(email)i(address)g(in)g(the)g(box)f
(beside)h(this)208 2835 y(b)n(utton)h(and)g(press)i(the)f(b)n(utton.)
104 3001 y(4.)41 b(Y)-9 b(ou)22 b(should)h(be)g(brought)e(to)i(a)h(ne)n
(w)f(page)g(which)g(has)g(an)g(\223P)o(assw)o(ord)g(Reminder\224)f
(section.)34 b(Press)25 b(the)e(\223Remind\224)f(b)n(utton)208
3100 y(to)e(ha)n(v)o(e)f(your)g(passw)o(ord)h(emailed)g(to)g(you.)0
3330 y(If)30 b(you)e(do)i(not)f(recei)n(v)o(e)g(the)h(passw)o(ord)f
(reminder)f(email)h(after)h(doing)e(this,)k(mak)o(e)e(sure)f(that)h
(you)f(typed)g(your)f(email)i(address)0 3429 y(correctly)e(and)h(that)g
(the)h(address)f(you)f(used)h(is,)k(indeed,)d(actually)f(subscribed)f
(to)h(that)h(list.)53 b(F)o(or)29 b(security)g(reasons,)i(Mailman)0
3529 y(generates)22 b(the)h(same)g(member)e(options)h(page)g(re)o
(gardless)g(of)g(whether)g(the)h(address)g(entered)e(is)j(subscribed)e
(or)g(not.)33 b(This)23 b(means)0 3629 y(that)g(people)e(cannot)h(use)h
(this)g(part)f(of)g(the)h(web)f(interf)o(ace)g(to)h(\002nd)f(out)h(if)f
(someone)g(is)h(subscribed)f(to)g(the)h(list,)h(b)n(ut)f(it)g(also)g
(means)0 3728 y(that)d(it')-5 b(s)22 b(hard)d(to)h(tell)h(if)g(you)e
(just)i(made)e(a)i(typo.)0 3875 y(Y)-9 b(ou)20 b(can)g(also)g(get)g(a)h
(reminder)d(using)i(the)g(email)g(interf)o(ace,)104 4088
y(1.)41 b(Send)19 b(a)i(mail)f(to)h Fd(LISTNAME-request@DOMAIN)c
Fk(with)j(the)g(command)f Fc(passwor)m(d)208 4221 y Fk(Commands)i(can)h
(appear)f(in)h(either)g(the)g(body)f(or)h(the)g(subject)g(of)g(the)g
(message.)30 b(\(See)23 b(Section)f(3.2)f(for)h(more)f(information)208
4320 y(about)e(sending)g(mail)h(commands.\))208 4453
y(If)28 b(you)h(are)g(not)f(sending)g(mail)i(from)e(your)g(subscribed)f
(address,)k(you)d(can)h(also)g(specify)g(this)g(address)g(by)g(sending)
f(the)208 4553 y(command)18 b Fc(passwor)m(d)i(addr)m(ess=)p
Fb(<)p Fc(ADDRESS)p Fb(>)p Fk(.)0 4837 y Fg(6.2)100 b(Ho)o(w)28
b(do)g(I)f(change)j(m)o(y)d(pass)m(w)o(ord?)0 5040 y
Fh(W)-5 b(ar)o(ning:)24 b Fk(Do)c(NO)m(T)g(use)h(a)f(v)n(aluable)f
(passw)o(ord,)h(since)g(this)h(passw)o(ord)e(may)h(be)g(mailed)g(to)g
(you)f(in)i(plain)e(te)o(xt.)0 5187 y(From)h(the)g(web)g(interf)o(ace:)
104 5400 y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g(options)g(page.)
24 b(\(See)c(Section)g(3.1)g(for)f(instructions)g(on)h(ho)n(w)g(to)g
(do)g(this.\))p 0 5549 3901 4 v 0 5649 a Ff(8)3325 b(6)84
b(P)m(ass)n(w)o(ords)p eop end
%%Page: 9 9
TeXDict begin 9 8 bop 104 83 a Fk(2.)41 b(Look)22 b(for)i(the)f(passw)o
(ord)h(changing)e(box)o(es)g(on)i(the)g(right-hand)d(side)j(of)g(the)g
(page)f(and)g(enter)h(your)f(ne)n(w)g(passw)o(ord)g(in)i(the)208
183 y(appropriate)17 b(box)o(es,)i(then)h(press)g(the)h(b)n(utton)e
(mark)o(ed)g(\223Change)g(My)h(P)o(assw)o(ord.)-6 b(\224)0
396 y(This)25 b(can)f(also)h(be)f(changed)f(for)g(multiple)h(lists)i
(at)f(the)f(same)h(time)g(if)f(you)g(are)g(subscribed)f(to)i(more)f
(than)g(one)f(list)j(on)e(the)g(same)0 496 y(domain.)g(See)c(Section)g
(10.1)f(for)h(information)d(about)j(changing)e(settings)i(globally)-5
b(.)0 642 y(From)20 b(the)g(email)g(interf)o(ace:)104
856 y(1.)41 b(Send)187 b(a)g(mail)h(to)f Fd(LISTNAME-request@DOMAIN)e
Fk(with)i(the)g(command)f Fc(pass-)208 955 y(wor)m(d)20
b Fb(<)p Fc(OLDP)-7 b(ASSW)n(ORD)p Fb(>)18 b(<)p Fc(NEWP)-7
b(ASSW)n(ORD)p Fb(>)p Fk(.)208 1088 y(Commands)21 b(can)h(appear)f(in)h
(either)g(the)g(body)f(or)h(the)g(subject)g(of)g(the)g(message.)30
b(\(See)23 b(Section)f(3.2)f(for)h(more)f(information)208
1188 y(about)e(sending)g(mail)h(commands.\))208 1321
y(If)47 b(you)f(are)i(not)f(sending)f(mail)i(from)f(your)f(membership)f
(address,)54 b(you)46 b(can)i(also)g(specify)e(this)i(address)f(with)
208 1420 y Fc(addr)m(ess=)p Fb(<)p Fc(ADDRESS)p Fb(>)17
b Fk(after)j Fb(<)p Fk(NEWP)-8 b(ASSW)o(ORD)p Fb(>)p
Fk(.)208 1553 y(F)o(or)21 b(e)o(xample,)f(if)i Fd(kath)n(y@here)o(.com)
d Fk(w)o(anted)j(to)f(change)f(her)i Fc(mylist)i Fk(passw)o(ord)c(from)
h Fc(zir)m(c)h Fk(to)g Fc(mik)o(o)p Fk(,)g(b)n(ut)g(she)f(w)o(as)i
(sending)208 1653 y(mail)g(from)f(her)g(w)o(ork)h(address)f
Fd(kath)n(y@w)o(or)q(k.com)p Fk(,)i(she)f(could)f(send)h(a)g(message)g
(to)g Fd(m)o(ylist-request@e)n(xample)o(.com)c Fk(with)208
1752 y(the)h(subject)g(set)h(to)f Fc(passwor)m(d)g(zir)m(c)h(mik)o(o)g
(addr)m(ess=kathy@her)m(e)o(.com)p Fk(.)0 2037 y Fg(6.3)100
b(Ho)o(w)28 b(do)g(I)f(tur)r(n)i(pass)m(w)o(ord)g(reminders)h(on)e(or)h
(off?)34 b(\(reminders)c(option\))0 2240 y Fk(If)25 b(you)f(don')o(t)g
(wish)h(to)h(the)f(reminder)e(email)j(including)d(your)h(passw)o(ord)h
(e)n(v)o(ery)e(month,)i(you)g(can)g(disable)g(it)h(from)e(the)h(member)
0 2340 y(options)15 b(page.)22 b(\(Y)-9 b(ou)15 b(can)h(al)o(w)o(ays)g
(get)g(the)f(passw)o(ord)g(mailed)g(out)h(when)f(you)g(actually)g(w)o
(ant)g(it.)25 b(See)16 b(Section)f(6.1)g(for)g(instructions.\))0
2487 y(Using)20 b(the)g(web)g(interf)o(ace:)104 2700
y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g(options)g(page.)24
b(\(See)c(Section)g(3.1)g(for)f(instructions)g(on)h(ho)n(w)g(to)g(do)g
(this.\))104 2866 y(2.)41 b(Look)19 b(for)g(the)h(section)g(mark)o(ed)f
(\223Get)i(passw)o(ord)e(reminder)g(email)h(for)f(this)i(list?\224)26
b(and)20 b(change)f(the)h(v)n(alue)f(accordingly)-5 b(.)0
3079 y(This)25 b(can)f(also)h(be)f(changed)f(for)g(multiple)h(lists)i
(at)f(the)f(same)h(time)g(if)f(you)g(are)g(subscribed)f(to)i(more)f
(than)g(one)f(list)j(on)e(the)g(same)0 3179 y(domain.)g(See)c(Section)g
(10.1)f(for)h(information)d(about)j(changing)e(settings)i(globally)-5
b(.)0 3326 y(Using)20 b(the)g(email)h(interf)o(ace:)104
3539 y(1.)41 b(Send)19 b(a)i(mail)f(to)h Fd(LISTNAME-request@DOMAIN)c
Fk(with)j(the)g(command)f Fc(set)i(r)m(eminder)o(s)f(on)g
Fk(or)g Fc(set)h(r)m(eminder)o(s)f(of)o(f)12 b Fk(.)208
3672 y(Commands)21 b(can)h(appear)f(in)h(either)g(the)g(body)f(or)h
(the)g(subject)g(of)g(the)g(message.)30 b(\(See)23 b(Section)f(3.2)f
(for)h(more)f(information)208 3772 y(about)e(sending)g(mail)h
(commands.\))104 3938 y(2.)41 b(Set)20 b(it)h(to)g(\223on\224)e(to)i
(recei)n(v)o(e)e(reminders,)f(and)i(\223of)n(f)5 b(\224)19
b(to)h(stop)g(recei)n(ving)f(reminders.)0 4265 y Fl(7)120
b(Changing)36 b(mail)c(deliv)m(er)t(y)0 4514 y Fg(7.1)100
b(Ho)o(w)28 b(do)g(I)f(tur)r(n)i(mail)g(deliv)n(er)s(y)f(on)g(or)h
(off?)34 b(\(deliv)n(er)s(y)29 b(option\))0 4717 y Fk(Y)-9
b(ou)23 b(may)g(wish)h(to)f(temporarily)f(stop)h(getting)g(messages)h
(from)e(the)i(list)g(without)f(ha)n(ving)f(to)i(unsubscribe.)33
b(If)24 b(you)e(disable)h(mail)0 4817 y(deli)n(v)o(ery)-5
b(,)24 b(you)g(will)i(no)e(longer)g(recei)n(v)o(e)g(messages,)i(b)n(ut)
f(will)h(still)g(be)f(a)g(subscriber)f(and)h(will)g(retain)g(your)f
(passw)o(ord)g(and)g(other)0 4917 y(settings.)0 5063
y(This)f(can)g(be)g(handy)e(in)i(a)h(man)o(y)d(dif)n(ferent)g(cases.)34
b(F)o(or)23 b(e)o(xample,)f(you)g(could)g(be)h(going)e(on)i(v)n
(acation)f(or)g(need)g(a)i(break)e(from)g(the)0 5163
y(list)i(because)d(you')l(re)g(too)h(b)n(usy)g(to)h(read)f(an)o(y)g(e)o
(xtra)g(mail.)32 b(Man)o(y)21 b(mailing)h(lists)i(also)f(allo)n(w)f
(only)g(subscribers)f(to)i(post)g(to)f(the)h(list,)0
5263 y(so)f(if)f(you)g(commonly)e(send)i(mail)g(from)f(more)h(than)f
(one)h(address)g(\(e)o(g,)f(one)h(address)g(for)g(at)g(home)g(and)f
(another)g(for)h(when)f(you')l(re)0 5362 y(tra)n(v)o(elling\),)e(you)i
(may)f(w)o(ant)i(to)f(ha)n(v)o(e)g(more)f(than)h(one)f(subscribed)g
(account,)g(b)n(ut)h(ha)n(v)o(e)f(only)h(one)f(of)h(them)g(actually)g
(recei)n(v)o(e)f(mail.)p 0 5549 3901 4 v 0 5649 a Ff(6.3)83
b(Ho)o(w)23 b(do)h(I)f(tur)r(n)g(pass)n(w)o(ord)f(reminders)h(on)h(or)e
(off?)29 b(\(reminders)23 b(option\))1319 b(9)p eop end
%%Page: 10 10
TeXDict begin 10 9 bop 0 83 a Fk(Y)-9 b(ou)27 b(can)g(also)h(use)g
(this)g(as)g(a)g(w)o(ay)g(to)f(read)g(pri)n(v)n(ate)g(archi)n(v)o(es)f
(e)n(v)o(en)h(on)g(a)h(list)g(which)f(may)g(be)h(too)f(b)n(usy)g(for)g
(you)g(to)g(ha)n(v)o(e)g(sent)0 183 y(directly)22 b(to)h(your)f
(mailbox.)31 b(All)24 b(you)e(need)g(to)h(do)g(is)h(subscribe,)e
(disable)h(mail)g(deli)n(v)o(ery)-5 b(,)21 b(and)h(use)h(your)f(passw)o
(ord)g(and)g(email)h(to)0 282 y(log)d(in)g(to)h(the)f(archi)n(v)o(es.)0
429 y(T)-7 b(o)20 b(disable/enable)f(mail)h(deli)n(v)o(ery)f(using)h
(the)g(web)g(interf)o(ace:)104 636 y(1.)41 b(Log)19 b(in)h(to)h(your)e
(options)g(page.)24 b(\(See)c(Section)g(3.1)g(for)f(instructions.\))104
799 y(2.)41 b(Go)21 b(do)n(wn)f(to)i(the)f(section)g(mark)o(ed)g
(\223Mail)g(deli)n(v)o(ery\224)f(and)h(select)h(\223Disabled\224)e(to)i
(stop)f(recei)n(ving)f(mail,)i(and)f(\223Enabled\224)e(to)208
898 y(start)h(recei)n(ving)f(mail.)0 1105 y(This)25 b(can)f(also)h(be)f
(changed)f(for)g(multiple)h(lists)i(at)f(the)f(same)h(time)g(if)f(you)g
(are)g(subscribed)f(to)i(more)f(than)g(one)f(list)j(on)e(the)g(same)0
1205 y(domain.)g(See)c(Section)g(10.1)f(for)h(information)d(about)j
(changing)e(settings)i(globally)-5 b(.)0 1352 y(T)e(o)20
b(disable/enable)f(mail)h(deli)n(v)o(ery)f(using)h(the)g(email)g
(interf)o(ace:)104 1559 y(1.)41 b(Send)19 b(a)i(mail)f(to)h
Fd(LISTNAME-request@DOMAIN)c Fk(with)j(the)g(command)f
Fc(set)i(delivery)f(of)o(f)32 b Fk(or)20 b Fc(set)h(delivery)f(on)p
Fk(.)208 1690 y(Commands)h(can)h(appear)f(in)h(either)g(the)g(body)f
(or)h(the)g(subject)g(of)g(the)g(message.)30 b(\(See)23
b(Section)f(3.2)f(for)h(more)f(information)208 1790 y(about)e(sending)g
(mail)h(commands.\))104 1952 y(2.)41 b(Set)20 b(it)h(to)g(\223of)n(f)5
b(\224)18 b(to)j(stop)f(recei)n(ving)f(posts,)h(and)f(\223on\224)h(to)g
(start)h(recei)n(ving)e(them)g(again.)0 2236 y Fg(7.2)100
b(Ho)o(w)28 b(can)g(I)f(a)n(v)n(oid)i(getting)f(duplicate)i(messages?)
35 b(\(duplicates)30 b(option\))0 2439 y Fk(Mailman)20
b(can')o(t)h(completely)e(stop)i(you)f(from)g(getting)h(duplicate)f
(messages,)h(b)n(ut)g(it)h(can)f(help.)27 b(One)21 b(common)e(reason)i
(people)f(get)0 2538 y(multiple)k(copies)f(of)h(a)h(mail)g(is)g(that)f
(the)g(sender)g(has)g(used)g(a)h(\223group)d(reply\224)h(function)g(to)
h(send)g(mail)h(to)f(both)f(the)i(list)g(and)f(some)0
2638 y(number)e(of)h(indi)n(viduals.)34 b(If)24 b(you)e(w)o(ant)i(to)g
(a)n(v)n(oid)f(getting)g(these)h(messages,)g(Mailman)f(can)h(be)f(set)i
(to)f(check)f(and)g(see)h(if)g(you)f(are)0 2738 y(in)f(the)f
Fd(T)-9 b(o:)27 b Fk(or)22 b Fd(CC:)f Fk(lines)h(of)f(the)h(message.)28
b(If)22 b(your)e(address)h(appears)f(there,)h(then)g(Mailman)g(can)g
(be)h(told)f(not)g(to)h(deli)n(v)o(er)e(another)0 2837
y(cop)o(y)26 b(to)i(you.)45 b(This)27 b(means)g(you)f(get)i(only)e(the)
h(cop)o(y)f(sent)i(by)f(the)g(original)f(sender)m(,)i(and)e(not)h(a)h
(cop)o(y)e(which)h(been)f(altered)h(by)0 2937 y(Mailman)20
b(\(to)g(include)f(headers)g(and)h(footers,)f(strip)h(attachments,)f
(etc.\).)0 3084 y(T)-7 b(o)20 b(turn)g(this)h(on)e(or)h(of)n(f)g(using)
f(the)i(web)f(interf)o(ace:)104 3291 y(1.)41 b(Log)19
b(in)h(to)h(your)e(member)g(options)g(page.)24 b(\(See)c(Section)g(3.1)
g(for)f(more)h(details)g(on)g(ho)n(w)f(to)i(do)f(this.\))104
3454 y(2.)41 b(Scroll)19 b(do)n(wn)g(to)i(the)f(bottom)f(of)g(the)h
(page)g(to)g(the)g(section)g(mark)o(ed)e(\223)-7 b(A)h(v)n(oid)20
b(duplicate)f(copies)h(of)f(messages?\224)25 b(and)20
b(change)208 3553 y(the)g(v)n(alue)f(accordingly)-5 b(.)0
3760 y(This)25 b(can)f(also)h(be)f(changed)f(for)g(multiple)h(lists)i
(at)f(the)f(same)h(time)g(if)f(you)g(are)g(subscribed)f(to)i(more)f
(than)g(one)f(list)j(on)e(the)g(same)0 3860 y(domain.)g(See)c(Section)g
(10.1)f(for)h(information)d(about)j(changing)e(settings)i(globally)-5
b(.)0 4007 y(T)e(o)20 b(turn)g(this)h(on)e(or)h(of)n(f)g(using)f(the)i
(email)f(interf)o(ace:)104 4213 y(1.)41 b(Send)19 b(a)i(mail)f(to)h
Fd(LISTNAME-request@DOMAIN)c Fk(with)j(the)g(command)f
Fc(set)i(duplicates)e(on)g Fk(or)h Fc(set)h(duplicates)e(of)o(f)12
b Fk(.)208 4345 y(Commands)21 b(can)h(appear)f(in)h(either)g(the)g
(body)f(or)h(the)g(subject)g(of)g(the)g(message.)30 b(\(See)23
b(Section)f(3.2)f(for)h(more)f(information)208 4444 y(about)e(sending)g
(mail)h(commands.\))104 4607 y(2.)41 b(Set)30 b(it)g(to)g(\223on\224)f
(to)g(recei)n(v)o(e)g(list)h(copies)g(of)f(messages)g(already)g(sent)h
(to)f(you,)i(set)f(it)h(to)e(\223of)n(f)5 b(\224)29 b(to)g(a)n(v)n(oid)
g(recei)n(ving)f(these)208 4707 y(duplicates.)0 4990
y Fg(7.3)100 b(Ho)o(w)28 b(do)g(I)f(change)j(m)o(y)d(subscr)q(iption)j
(address?)0 5193 y Fk(T)-7 b(o)20 b(change)f(your)g(subscription)g
(address,)104 5400 y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g
(options)g(page.)24 b(\(See)c(Section)g(3.1)g(for)f(more)h(details)g
(on)g(ho)n(w)f(to)i(do)f(this.\))p 0 5549 3901 4 v 0
5649 a Ff(10)2839 b(7)83 b(Changing)24 b(mail)h(deliv)n(er)r(y)p
eop end
%%Page: 11 11
TeXDict begin 11 10 bop 104 83 a Fk(2.)41 b(In)19 b(the)i(section)f
(mark)o(ed)f(\223Changing)f(your)h(LISTN)m(AME)g(membership)g
(information,)-6 b(\224)17 b(enter)j(your)f(ne)n(w)h(address.)104
247 y(3.)41 b(If)18 b(you)g(wish)h(to)f(change)g(your)f(address)h(for)g
(all)h(subscriptions)e(using)h(the)h(old)f(address,)g(select)h(the)g
(\223Change)f(globally\224)f(box.)208 347 y(If)25 b(you)g(ha)n(v)o(e)g
(subscriptions)g(under)f(another)h(address)g(or)g(for)h(lists)h(on)e(a)
h(dif)n(ferent)f(domain,)g(these)h(will)h(ha)n(v)o(e)e(to)h(be)g(done)
208 447 y(separately)-5 b(.)23 b(See)e(Section)f(10.1)f(for)g(more)h
(information)d(about)j(changing)e(settings)i(globally)-5
b(.)0 657 y(A)18 b(con\002rmation)e(message)i(will)g(be)g(sent)g(to)g
(your)e(ne)n(w)i(address,)f(and)h(the)f(change)g(will)h(not)g(happen)e
(until)i(you)e(con\002rm)h(the)h(change)0 756 y(by)i(follo)n(wing)e
(the)j(instructions)e(in)h(that)g(message.)0 903 y(There)f(is)h(no)f
(special)g(w)o(ay)h(to)f(do)g(this)h(from)e(the)h(email)h(interf)o
(ace,)e(b)n(ut)i(you)e(can)h(subscribe)g(and)f(unsubscribe)g(for)h
(more)f(or)h(less)i(the)0 1003 y(same)f(ef)n(fect.)25
b(\(See)20 b(Sections)g(5.1)g(and)f(5.2)h(for)f(more)h(information)e
(on)h(subscribing)g(and)h(unsubscribing.\))0 1287 y Fg(7.4)100
b(Ho)o(w)28 b(do)g(I)f(stop)h(or)h(star)t(t)e(getting)i(copies)g(of)e
(m)o(y)g(o)o(wn)h(posts?)35 b(\(m)o(yposts)27 b(option\))0
1490 y Fk(By)h(def)o(ault)e(in)h(Mailman,)h(you)f(get)g(a)h(cop)o(y)e
(of)h(e)n(v)o(ery)f(post)h(you)f(send)h(to)g(the)h(list.)47
b(Some)26 b(people)g(lik)o(e)i(this)g(since)f(it)h(lets)g(them)0
1590 y(kno)n(w)23 b(when)g(the)h(post)g(has)g(gone)e(through)g(and)h
(means)h(the)o(y)f(ha)n(v)o(e)g(a)i(cop)o(y)e(of)g(their)h(o)n(wn)f(w)o
(ords)g(with)h(the)g(rest)g(of)g(a)g(discussion,)0 1689
y(b)n(ut)c(others)g(don')o(t)e(w)o(ant)j(to)f(bother)f(do)n(wnloading)e
(copies)j(of)g(their)g(o)n(wn)f(posts.)0 1836 y Fh(Note:)24
b Fk(This)d(option)e(has)h(no)g(ef)n(fect)g(if)g(you)f(are)h(recei)n
(ving)f(digests.)0 1983 y(Y)-9 b(ou)20 b(may)f(also)i(w)o(ant)f(to)g
(see)h(Section)f(7.5,)f(which)h(discusses)h(ackno)n(wledgement)c
(emails)j(for)g(posts)g(sent)h(to)f(the)g(list.)0 2130
y(T)-7 b(o)20 b(set)h(this)g(using)f(the)g(web)g(interf)o(ace:)104
2340 y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g(options)g(page.)24
b(\(See)c(Section)g(3.1)g(for)f(more)h(details)g(on)g(ho)n(w)f(to)i(do)
f(this.\))104 2504 y(2.)41 b(Look)19 b(for)g(the)i(section)f(mark)o(ed)
f(\223Recei)n(v)o(e)g(your)g(o)n(wn)h(posts)h(to)f(the)g(list?\224)27
b(Set)21 b(it)g(to)f(\223Y)-8 b(es\224)20 b(to)h(recei)n(v)o(e)e
(copies)h(of)g(your)f(o)n(wn)208 2604 y(posts,)h(and)f(\223No\224)h(to)
h(a)n(v)n(oid)f(recei)n(ving)e(them.)0 2814 y(T)-7 b(o)20
b(set)h(this)g(using)f(the)g(email)g(interf)o(ace:)104
3024 y(1.)41 b(Send)19 b(a)i(mail)f(to)h Fd(LISTNAME-request@DOMAIN)c
Fk(with)j(the)g(command)f Fc(set)i(myposts)f(on)g Fk(or)g
Fc(set)h(myposts)f(of)o(f)12 b Fk(.)208 3156 y(Commands)21
b(can)h(appear)f(in)h(either)g(the)g(body)f(or)h(the)g(subject)g(of)g
(the)g(message.)30 b(\(See)23 b(Section)f(3.2)f(for)h(more)f
(information)208 3256 y(about)e(sending)g(mail)h(commands.\))104
3420 y(2.)41 b(Set)20 b(it)h(to)g(\223on\224)e(to)i(recei)n(v)o(e)e
(copies)h(of)f(your)g(o)n(wn)h(posts,)g(and)g(\223of)n(f)5
b(\224)19 b(to)h(a)n(v)n(oid)g(recei)n(ving)e(them.)0
3704 y Fg(7.5)100 b(Ho)o(w)28 b(can)i(I)e(get)h(Mailman)h(to)e(tell)h
(me)g(when)h(m)o(y)e(post)g(has)h(been)i(receiv)n(ed)e(b)n(y)g(the)g
(list?)37 b(\(ac)n(k)238 3821 y(option\))0 4024 y Fk(On)26
b(most)f(lists,)j(you)d(will)h(simply)g(recei)n(v)o(e)e(a)i(cop)o(y)f
(of)g(your)g(mail)g(when)g(it)i(has)e(gone)g(through)e(the)j(list)h
(softw)o(are,)f(b)n(ut)g(if)g(this)g(is)0 4123 y(disabled)e(\(See)h
(Section)f(7.4\),)g(your)g(list)i(mail)e(deli)n(v)o(ery)f(is)j
(disabled)e(\(See)h(Section)f(7.1\),)g(you)g(are)h(not)f(subscribed)f
(to)i(that)g(topic)0 4223 y(\(See)20 b(Section)g(9.2\))f(or)h(you)f
(simply)h(w)o(ant)h(an)f(e)o(xtra)f(ackno)n(wledgement)e(from)i(the)h
(system,)g(this)h(option)e(may)h(be)g(useful)g(to)g(you.)0
4370 y Fh(Note:)26 b Fk(If)21 b(you)f(are)h(not)g(subscribed)f(to)h
(the)g(list,)h(this)g(option)e(cannot)g(be)h(used.)27
b(Y)-9 b(ou)21 b(must)g(either)g(check)f(the)h(archi)n(v)o(es)f
(yourself)g(\(if)0 4469 y(the)g(list)h(has)g(public)e(archi)n(v)o
(es\),)g(ask)h(someone)f(who)h(is)h(subscribed)e(to)h(the)g(list,)h(or)
f(subscribe)g(to)g(use)g(this)h(option.)0 4616 y(T)-7
b(o)20 b(set)h(this)g(using)f(the)g(web)g(interf)o(ace:)104
4826 y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g(options)g(page.)24
b(\(See)c(Section)g(3.1)g(for)f(more)h(details)g(on)g(ho)n(w)f(to)i(do)
f(this.\))104 4991 y(2.)41 b(Look)21 b(for)h(the)h(section)f(mark)o(ed)
g(\223Recei)n(v)o(e)g(ackno)n(wledgement)d(mail)k(when)f(you)g(send)g
(mail)h(to)g(the)f(list?\224)34 b(Set)23 b(it)h(to)e(\223Y)-8
b(es\224)208 5090 y(to)23 b(recei)n(v)o(e)e(a)j(mail)f(letting)f(you)g
(kno)n(w)g(your)g(post)h(has)g(been)f(recei)n(v)o(ed,)g(and)g
(\223No\224)h(to)g(a)n(v)n(oid)f(recei)n(ving)g(such)g(an)h(ackno)n
(wl-)208 5190 y(edgement.)0 5400 y(T)-7 b(o)20 b(set)h(this)g(using)f
(the)g(email)g(interf)o(ace:)p 0 5549 3901 4 v 0 5649
a Ff(7.4)83 b(Ho)o(w)23 b(do)h(I)f(stop)g(or)g(star)s(t)g(getting)h
(copies)f(of)g(m)o(y)g(o)o(wn)g(posts?)28 b(\(m)o(yposts)22
b(option\))976 b(11)p eop end
%%Page: 12 12
TeXDict begin 12 11 bop 104 83 a Fk(1.)41 b(Send)19 b(a)i(mail)f(to)h
Fd(LISTNAME-request@DOMAIN)c Fk(with)j(the)g(command)f
Fc(set)i(ac)n(k)f(on)g Fk(or)g Fc(set)h(ac)n(k)f(of)o(f)12
b Fk(.)208 216 y(Commands)21 b(can)h(appear)f(in)h(either)g(the)g(body)
f(or)h(the)g(subject)g(of)g(the)g(message.)30 b(\(See)23
b(Section)f(3.2)f(for)h(more)f(information)208 315 y(about)e(sending)g
(mail)h(commands.\))104 482 y(2.)41 b(Set)29 b(it)h(to)f(\223on\224)g
(if)g(you)f(wish)h(to)h(recei)n(v)o(e)e(mail)h(letting)g(you)f(kno)n(w)
g(your)g(post)h(has)g(been)f(recei)n(v)o(ed,)i(and)e(\223of)n(f)5
b(\224)28 b(to)h(a)n(v)n(oid)208 581 y(recei)n(ving)18
b(such)i(an)g(ackno)n(wledgement.)0 866 y Fg(7.6)100
b(I)27 b(don't)i(seem)f(to)g(be)h(getting)f(mail)h(from)f(the)g(lists)o
(.)33 b(What)28 b(should)h(I)f(do?)0 1069 y Fk(There)19
b(are)h(a)h(fe)n(w)f(common)f(reasons)g(for)h(this:)125
1282 y Fe(\017)41 b Fk(No)20 b(one)f(has)i(sent)f(an)o(y)g(mail)g(to)g
(the)h(list\(s\))g(you')l(re)d(on)i(for)f(a)i(little)g(while.)208
1415 y(T)-7 b(o)19 b(check)g(if)g(this)h(is)g(the)g(case,)f(try)h
(visiting)f(the)g(archi)n(v)o(es)f(of)h(the)h(list)g(\(assuming)e(that)
i(the)f(list)i(has)e(archi)n(v)o(es\).)k(If)d(the)f(list)h(has)208
1515 y(no)f(archi)n(v)o(es,)g(you)g(may)h(ha)n(v)o(e)g(to)g(ask)h
(another)d(subscriber)-5 b(.)24 b(\(See)d(Section)f(3.1)f(for)h(help)f
(in)i(\002nding)e(the)h(list)h(archi)n(v)o(es.\))208
1647 y Fh(Note:)h Fk(Generally)-5 b(,)16 b(it)h(is)g(considered)e
(impolite)h(to)h(send)f(test)h(messages)g(to)g(the)f(entire)h(list.)24
b(If)17 b(you)e(feel)i(a)g(need)f(to)g(test)i(that)f(the)208
1747 y(list)j(is)f(w)o(orking)f(and)g(for)g(some)h(reason)f(you)g
(cannot)g(simply)g(compose)g(a)h(re)o(gular)e(message)i(to)g(the)g
(list,)h(it)f(is)h(less)g(disrupti)n(v)o(e)208 1847 y(to)j(send)f(a)h
(help)g(message)f(to)h(the)g(list)h(request)e(address)h(\(LISTN)m
(AME-request@DOMAIN\))c(to)k(see)h(if)f(that)g(w)o(orks,)g(or)f(to)208
1946 y(contact)d(the)h(list)i(administrator)c(\(LISTN)m(AME-o)n
(wner@DOMAIN\))f(to)j(ask)g(if)h(the)f(list)h(is)g(w)o(orking.)125
2112 y Fe(\017)41 b Fk(Y)-9 b(ou)19 b(were)h(bouncing)e(mail)i(and)g
(ha)n(v)o(e)g(had)f(mail)i(deli)n(v)o(ery)d(\(temporarily\))f(disabled)
j(by)g(the)g(list)h(softw)o(are.)208 2245 y(If)28 b(your)f(mail)h(pro)o
(vider)e(\223bounces\224)g(too)i(man)o(y)f(messages)h(\(that)g(is,)j
(it)e(tells)g(Mailman)f(that)g(the)g(message)h(could)e(not)h(be)208
2345 y(deli)n(v)o(ered\))18 b(Mailman)i(e)n(v)o(entually)f(stops)h
(trying)g(to)h(send)f(you)g(mail.)26 b(This)21 b(feature)e(allo)n(ws)i
(Mailman)f(to)h(gracefully)e(handle)208 2444 y(addresses)29
b(which)g(no)g(longer)f(e)o(xist)h(\(for)g(e)o(xample,)h(the)f
(subscriber)f(has)i(found)e(a)i(ne)n(w)f(Internet)f(service)h(pro)o
(vider)e(and)208 2544 y(for)o(got)20 b(to)i(unsubscribe)f(the)h(old)g
(address\),)g(as)h(well)f(as)h(addresses)f(which)g(are)g(temporarily)e
(out-of-service)g(\(for)h(e)o(xample,)208 2644 y(the)d(subscriber)g
(has)h(used)g(up)f(all)i(of)f(the)f(allotted)h(space)g(for)f(his)i(or)e
(her)h(email)g(account,)e(or)i(the)g(subscriber')-5 b(s)18
b(mail)h(pro)o(vider)208 2743 y(is)i(e)o(xperiencing)c(dif)n
(\002culties\).)208 2876 y(Ev)o(en)g(if)h(you)f(are)h(una)o(w)o(are)f
(of)g(an)o(y)h(dif)n(\002culties)f(with)h(your)f(mail)h(pro)o(vider)m
(,)e(it)j(is)g(a)f(good)f(idea)h(to)g(check)f(this.)25
b(Some)17 b(popular)208 2976 y(webmail)23 b(pro)o(viders)e(and)j
(internet)e(serv)o(ers)i(are)f(not)h(as)g(reliable)f(as)i(one)e(might)g
(assume,)h(nor)f(is)i(the)f(internet)f(as)h(a)g(whole.)208
3075 y(Y)-9 b(ou)28 b(may)h(w)o(ant)g(to)g(also)g(send)g(yourself)f(a)h
(test)h(message)f(from)f(another)g(account)g(or)g(ask)i(a)f(friend)f
(to)h(send)g(you)f(a)i(test)208 3175 y(message)20 b(to)g(mak)o(e)g
(sure)g(your)f(subscribed)g(address)g(is)i(w)o(orking.)208
3308 y(T)-7 b(o)25 b(check)g(if)g(this)h(may)f(be)g(the)g(reason)g(you)
f(are)i(not)f(recei)n(ving)e(messages,)k(log)e(in)g(to)h(the)f(your)f
(options)g(page)h(\(See)g(Sec-)208 3408 y(tion)c(3.1)h(for)f(more)h
(details)g(on)g(ho)n(w)f(to)h(do)g(this\))g(and)g(look)f(at)i(your)e
(options.)29 b(If)22 b(your)f(subscription)g(has)h(been)f(disabled)h
(or)208 3507 y(Mailman)d(has)i(recei)n(v)o(ed)d(bounces)h(from)g(your)g
(email)h(address,)g(there)f(will)i(be)g(a)f(big)g(banner)f(at)h(the)h
(top)e(of)h(this)h(page.)208 3640 y(T)-7 b(o)20 b(re-enable)f(mail)i
(deli)n(v)o(ery)-5 b(,)19 b(look)h(for)g(an)g(option)g(mark)o(ed)f
(\223Mail)i(Deli)n(v)o(ery\224)e(and)h(set)i(it)f(to)g(\223Enabled\224)
e(to)i(start)g(recei)n(ving)208 3740 y(mail)g(again.)27
b(T)-7 b(o)21 b(get)g(rid)g(of)g(your)f(bounce)g(score,)h(you)f(can)h
(disable)g(and)f(then)h(re-enable)f(deli)n(v)o(ery)-5
b(.)25 b(F)o(or)c(more)g(instructions)208 3839 y(on)e(disabling)h(or)f
(enabling)g(mail)h(deli)n(v)o(ery)-5 b(,)18 b(see)j(Section)f(7.1.)208
3972 y Fh(Note:)k Fk(Ev)o(en)19 b(if)i(you)f(ha)n(v)o(e)f(not)h(been)g
(disabled)f(at)i(the)g(time)f(you)g(check,)f(you)g(could)h(be)g
(bouncing)e(messages)i(and)g(not)g(ha)n(v)o(e)208 4072
y(reached)e(the)j(threshold)d(for)i(your)f(subscription)g(to)h(be)g
(disabled.)k(Y)-9 b(ou)20 b(may)g(need)f(to)h(check)g(again.)125
4238 y Fe(\017)41 b Fk(There)19 b(is)i(a)g(delay)e(or)h(break)f(in)i
(the)f(netw)o(orks)f(between)h(you)f(and)g(the)i(list)g(serv)o(er)-5
b(.)208 4371 y(No)29 b(matter)f(what)h(man)o(y)f(of)h(us)g(w)o(ould)g
(lik)o(e,)i(the)e(internet)f(is)i(not)f(100\045)f(reliable,)j(nor)d(is)
i(it)g(al)o(w)o(ays)f(f)o(ast.)52 b(Sometimes,)208 4470
y(messages)27 b(simply)f(tak)o(e)h(a)g(long)f(time)h(to)g(get)g(to)g
(you.)44 b(T)m(ry)26 b(to)h(be)g(patient,)h(especially)e(if)h(the)g
(serv)o(er)f(is)i(f)o(ar)e(\(in)h(terms)g(of)208 4570
y(netw)o(orks,)19 b(not)g(geography)-5 b(,)17 b(although)h(often)h(one)
h(implies)g(the)g(other\))f(from)h(your)e(internet)i(service)g(pro)o
(vider)-5 b(.)208 4703 y(T)e(o)21 b(check)f(if)h(this)g(might)f(be)h
(causing)f(your)g(problem,)f(you)h(can)g(try)h(pinging)e(the)i(list)h
(serv)o(er)e(or)h(tracing)e(the)i(route)f(between)208
4802 y(you)j(and)g(it.)37 b(\(Instructions)22 b(on)i(ho)n(w)f(to)i(do)e
(this)i(v)n(aries)e(from)g(platform)g(to)h(platform,)f(so)h(you)g(may)f
(w)o(ant)h(to)g(use)h(a)f(search)208 4902 y(engine)19
b(to)h(\002nd)g(those)g(appropriate)e(for)h(you.\))125
5068 y Fe(\017)41 b Fk(The)26 b(mail)h(serv)o(er)e(or)i(Mailman)f
(might)g(not)g(be)h(functioning)d(properly)-5 b(.)41
b(This)27 b(can)g(happen)e(if)i(the)f(system)h(is)h(o)o(v)o(erloaded)
208 5168 y(with)20 b(viruses)g(or)g(spam)g(and)f(the)i(mail)f(system)g
(that)h(hosts)f(Mailman)g(has)g(trouble)f(k)o(eeping)g(up.)208
5300 y(T)-7 b(o)40 b(test)i(if)e(this)h(is)h(a)f(case,)46
b(try)40 b(visiting)g(the)h(list')-5 b(s)42 b(web)e(interf)o(ace)g(and)
g(try)g(sending)f(a)i(message)g(to)f Fd(LISTNAME-)208
5400 y(request@DOMAIN)27 b Fk(with)i(the)g(command)e(\223)p
Fc(help)p Fk(\224)h(\(without)g(the)g(quotes\))g(in)h(the)g
Fd(Subject:)p Fk(.)50 b(If)28 b(neither)g(of)h(these)g(w)o(orks)p
0 5549 3901 4 v 0 5649 a Ff(12)2839 b(7)83 b(Changing)24
b(mail)h(deliv)n(er)r(y)p eop end
%%Page: 13 13
TeXDict begin 13 12 bop 208 83 a Fk(after)30 b(a)h(reasonable)e(length)
g(of)h(time,)j(this)e(may)f(be)h(the)f(problem.)54 b(Y)-9
b(ou)30 b(may)g(wish)h(to)g(contact)e(either)h(the)h(list)g(or)g(site)
208 183 y(administrator\(s\).)0 510 y Fl(8)120 b(Digests)0
759 y Fg(8.1)100 b(Ho)o(w)37 b(can)h(I)f(star)t(t)h(or)g(stop)f
(getting)i(the)f(list)f(posts)g(g)o(rouped)j(into)e(one)h(big)f(email?)
65 b(\(digest)238 876 y(option\))0 1079 y Fk(Groups)29
b(of)h(posts)g(are)g(called)g(\223digests\224)g(in)g(Mailman.)53
b(Rather)30 b(than)g(get)g(messages)g(one)f(at)i(a)f(time,)j(you)c(can)
g(get)h(messages)0 1178 y(grouped)18 b(together)-5 b(.)25
b(On)c(a)g(moderately)d(b)n(usy)i(list,)i(this)f(typically)f(means)g
(you)f(get)i(one)f(email)g(per)h(day)-5 b(,)19 b(although)g(it)i(may)f
(be)g(more)0 1278 y(or)g(less)h(frequent)e(depending)e(upon)i(the)h
(list.)0 1425 y(Y)-9 b(ou)20 b(may)f(also)i(w)o(ant)f(to)g(look)g(at)h
(Section)e(8.2)h(which)g(discusses)g(MIME)g(and)g(plain)f(te)o(xt)i
(digests.)0 1572 y(T)-7 b(o)20 b(turn)g(digest)g(mode)f(on)h(or)g(of)n
(f)f(using)h(the)g(web)g(interf)o(ace,)104 1785 y(1.)41
b(Log)19 b(in)h(to)h(your)e(member)g(options)g(page.)24
b(\(See)c(Section)g(3.1)g(for)f(more)h(details)g(on)g(ho)n(w)f(to)i(do)
f(this.\))104 1951 y(2.)41 b(Look)19 b(for)g(the)h(section)g(mark)o(ed)
f(\223Set)i(Digest)f(Mode.)-6 b(\224)208 2084 y(Set)20
b(it)h(to)g(\223On\224)f(to)g(recei)n(v)o(e)f(messages)h(b)n(undled)f
(together)g(in)h(digests.)25 b(Set)c(it)g(to)f(\223Of)n(f)5
b(\224)20 b(to)g(recei)n(v)o(e)f(posts)h(separately)-5
b(.)0 2297 y(T)e(o)20 b(turn)g(digest)g(mode)f(on)h(or)g(of)n(f)f
(using)h(the)g(email)g(interf)o(ace,)104 2510 y(1.)41
b(Send)24 b(a)h(mail)f(to)h Fd(LISTNAME-request@DOMAIN)c
Fk(with)k(the)f(command)f Fc(set)i(dig)o(est)g(plain)e
Fk(or)i Fc(set)g(dig)o(est)f(mime)h Fk(or)f Fc(set)i(di-)208
2610 y(g)o(est)20 b(of)o(f)12 b Fk(.)208 2743 y(Commands)21
b(can)h(appear)f(in)h(either)g(the)g(body)f(or)h(the)g(subject)g(of)g
(the)g(message.)30 b(\(See)23 b(Section)f(3.2)f(for)h(more)f
(information)208 2842 y(about)e(sending)g(mail)h(commands.\))104
3009 y(2.)41 b(Set)30 b(it)h(to)f(\223of)n(f)5 b(\224)29
b(if)h(you)f(wish)i(to)f(recei)n(v)o(e)f(indi)n(vidual)f(posts)j
(separately)-5 b(,)31 b(and)e(to)h(\223plain\224)g(or)g(\223mime\224)f
(to)h(recei)n(v)o(e)f(posts)208 3108 y(grouped)17 b(into)j(one)g(lar)o
(ge)f(mail.)25 b(See)c(Section)f(8.2)f(for)h(more)f(information)f(on)i
(plain)g(v)o(ersus)f(MIME)h(digests.)0 3393 y Fg(8.2)100
b(What)30 b(are)h(MIME)f(and)h(Plain)g(T)-12 b(e)m(xt)29
b(Digests?)41 b(Ho)o(w)30 b(do)g(I)g(change)h(which)g(one)f(I)g(get?)41
b(\(digest)238 3509 y(option\))0 3712 y Fk(MIME)19 b(is)h(short)f(for)g
(Multipurpose)e(Internet)h(Mail)i(Extensions.)j(It)d(is)g(used)f(to)h
(send)f(things)g(by)g(email)g(which)g(are)g(not)g(necessarily)0
3812 y(simple)h(plain)g(te)o(xt.)25 b(\(F)o(or)19 b(e)o(xample,)g(MIME)
h(w)o(ould)f(be)h(used)g(if)h(you)e(were)h(sending)f(a)i(picture)e(of)h
(your)f(dog)g(to)h(a)h(friend.\))0 3959 y(A)g(MIME)e(digest)i(has)f
(each)g(message)g(as)h(an)f(attachment)f(inside)h(the)g(message,)g
(along)f(with)i(a)f(summary)f(table)h(of)g(contents.)0
4106 y(A)27 b(plain)f(te)o(xt)h(digest)g(is)g(a)g(simpler)g(form)e(of)i
(digest,)h(which)e(should)f(be)i(readable)e(e)n(v)o(en)h(in)h(mail)g
(readers)f(which)g(don')o(t)f(support)0 4205 y(MIME.)19
b(The)h(messages)h(are)f(simply)g(put)f(one)h(after)g(the)g(other)g
(into)f(one)h(lar)o(ge)f(te)o(xt)h(message.)0 4352 y(Most)f(modern)d
(mail)j(programs)e(do)h(support)f(MIME,)h(so)h(you)e(only)h(need)g(to)h
(choose)e(plain)h(te)o(xt)h(digests)g(if)f(you)g(are)g(ha)n(ving)g
(trouble)0 4452 y(reading)h(the)h(MIME)g(ones.)0 4599
y Fh(Note:)j Fk(This)17 b(option)f(has)i(no)e(ef)n(fect)h(if)h(you)e
(are)h(not)g(recei)n(ving)f(mail)h(b)n(unched)e(as)j(digests.)24
b(\(See)18 b(Section)e(8.1)h(for)g(more)f(information)0
4698 y(on)k(recei)n(ving)e(mail)j(as)g(digests.\))0 4845
y(T)-7 b(o)20 b(set)h(your)e(digest)h(type)g(using)g(the)g(web)g
(interf)o(ace:)104 5058 y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g
(options)g(page.)24 b(\(See)c(Section)g(3.1)g(for)f(more)h(details)g
(on)g(ho)n(w)f(to)i(do)f(this.\))104 5224 y(2.)41 b(Look)19
b(for)g(the)h(section)g(mark)o(ed)f(\223Get)i(MIME)e(or)h(Plain)h(T)-6
b(e)o(xt)20 b(Digests?.)-6 b(\224)208 5357 y(Set)20 b(it)h(to)g
(\223MIME\224)e(to)h(recei)n(v)o(e)g(digests)g(in)g(MIME)g(format,)f
(or)h(\223Plain)g(te)o(xt\224)g(to)g(recei)n(v)o(e)f(digests)i(in)f
(plain)g(te)o(xt)g(format.)p 0 5549 3901 4 v 3808 5649
a Ff(13)p eop end
%%Page: 14 14
TeXDict begin 14 13 bop 0 83 a Fk(This)25 b(can)f(also)h(be)f(changed)f
(for)g(multiple)h(lists)i(at)f(the)f(same)h(time)g(if)f(you)g(are)g
(subscribed)f(to)i(more)f(than)g(one)f(list)j(on)e(the)g(same)0
183 y(domain.)g(See)c(Section)g(10.1)f(for)h(information)d(about)j
(changing)e(settings)i(globally)-5 b(.)0 330 y(T)e(o)20
b(set)h(your)e(digest)h(type)g(using)g(the)g(email)g(interf)o(ace,)104
543 y(1.)41 b(Send)19 b(a)i(mail)f(to)h Fd(LISTNAME-request@DOMAIN)c
Fk(with)j(the)g(command)f Fc(set)i(dig)o(est)f(plain)f
Fk(or)h Fc(set)h(dig)o(est)g(mime)p Fk(.)208 676 y(Commands)g(can)h
(appear)f(in)h(either)g(the)g(body)f(or)h(the)g(subject)g(of)g(the)g
(message.)30 b(\(See)23 b(Section)f(3.2)f(for)h(more)f(information)208
775 y(about)e(sending)g(mail)h(commands.\))104 941 y(2.)41
b(Set)27 b(it)h(to)g(\223plain\224)e(to)i(get)f(posts)h(b)n(undled)d
(into)i(a)h(plain)f(te)o(xt)g(digest,)i(or)e(\223mime\224)f(to)i(get)f
(posts)h(b)n(undled)d(together)h(into)h(a)208 1041 y(MIME)19
b(digest.)0 1368 y Fl(9)120 b(Mailing)33 b(list)f(topics)0
1601 y Fk(Some)21 b(lists)i(are)f(set)h(up)e(so)h(that)g(dif)n(ferent)e
(topics)h(are)h(handled)e(by)h(Mailman.)29 b(F)o(or)21
b(e)o(xample,)g(the)g(courses)h(list)g(on)g(Linuxchix.or)o(g)0
1701 y(is)j(a)g(discussion)f(list)i(for)e(courses)g(being)f(run)h(by)g
(linuxchix)f(members,)h(and)g(often)g(there)g(are)g(se)n(v)o(eral)g
(courses)g(being)g(run)g(at)h(the)0 1800 y(same)c(time.)k(\(e)o(g:)g
(Netw)o(orking)19 b(for)h(be)o(ginners,)e(C)j(programming,)c(L)2029
1784 y Fa(A)2059 1800 y Fk(T)2096 1819 y(E)2136 1800
y(X)k(document)d(mark)i(up.\))k(Each)c(of)h(the)f(courses)g(being)f
(run)0 1900 y(is)i(associated)f(with)g(a)h(separate)f(topic)g(on)f(the)
i(list)g(so)f(that)h(people)e(can)h(choose)f(only)g(to)i(recei)n(v)o(e)
e(the)h(course)g(the)o(y)f(w)o(ant)h(to)h(tak)o(e.)0
2047 y(These)i(topics)g(must)g(be)g(con\002gured)d(by)j(the)g(list)h
(administrator)m(,)e(b)n(ut)h(it)g(is)h(the)f(responsibility)f(of)h
(each)f(poster)h(to)g(mak)o(e)g(sure)f(that)0 2147 y(their)28
b(post)g(is)i(put)e(with)g(the)h(correct)e(topic.)49
b(Usually)-5 b(,)30 b(this)e(means)h(adding)d(a)j(w)o(ord)f(or)g(tag)g
(of)g(some)h(type)e(to)i(the)f(subject)g(line)0 2246
y(\(e)o(g:)g([Netw)o(orking])20 b(What)i(type)f(of)h(cables)g(do)f(I)i
(need?\))29 b(or)21 b(making)g(sure)h(the)g Fd(K)m(e)o(yw)o(ords:)27
b Fk(line)22 b(has)h(the)e(right)h(information.)27 b(\(By)0
2346 y(def)o(ault,)21 b(you)g(can)g(put)h(a)g Fd(K)m(e)o(yw)o(ords:)27
b Fk(section)22 b(in)g(the)f(be)o(ginning)e(of)j(the)g(body)e(of)h
(your)g(message,)h(b)n(ut)f(this)h(can)g(be)g(con\002gured)d(by)0
2445 y(your)g(list)i(administrator)-5 b(.\))24 b(Note)c(that)g(these)g
(tags)h(are)f(case-insensiti)n(v)o(e.)0 2730 y Fg(9.1)100
b(Ho)o(w)28 b(do)g(I)f(mak)n(e)i(sure)f(that)g(m)o(y)f(post)h(has)g
(the)h(r)q(ight)f(topic?)0 2933 y Fk(When)20 b(a)h(list)g
(administrator)d(de\002nes)i(a)h(topic,)f(he)g(or)g(she)g(sets)h(three)
f(things:)125 3147 y Fe(\017)41 b Fk(a)20 b(topic)g(name)125
3313 y Fe(\017)41 b Fk(a)20 b(re)o(gular)f(e)o(xpression)f(\(re)o(ge)o
(xp.\))125 3479 y Fe(\017)41 b Fk(a)20 b(description)0
3692 y(Y)-9 b(ou)21 b(can)h(vie)n(w)g(this)g(information)e(by)i
(logging)e(in)i(to)g(your)f(member)f(options)h(page.)30
b(\(See)22 b(Section)g(3.1)f(for)g(more)g(details)i(on)e(ho)n(w)0
3792 y(to)f(do)g(this.\))25 b(and)20 b(clicking)f(on)h(the)g
(\223details\224)g(link)g(for)g(an)o(y)f(topic)h(that)g(interests)h
(you.)0 3938 y(T)-7 b(o)19 b(post)f(on)g(a)h(gi)n(v)o(en)f(topic,)g
(you)g(need)g(to)g(mak)o(e)g(sure)h(that)g(the)f Fd(K)m(e)o(yw)o(ords:)
24 b Fk(or)18 b Fd(Subject:)23 b Fk(headers)18 b(in)g(a)h(message)g
(match)f(the)g Fc(r)m(e)m(gular)0 4038 y(e)n(xpr)m(ession)g
Fk(for)g(that)g(topic.)24 b(A)18 b(re)o(gular)f(e)o(xpression)g(is)i(a)
f(pattern)f(which)h(may)g(match)f(more)h(than)f(one)h(thing.)24
b(Re)o(gular)17 b(e)o(xpressions)0 4138 y(can)h(actually)f(be)h(f)o
(airly)g(comple)o(x,)f(so)h(you)f(may)h(w)o(ant)g(to)h(just)f(ask)h
(the)f(list)h(administrator)d(if)j(you)e(don')o(t)f(kno)n(w)h(ho)n(w)h
(to)g(mak)o(e)g(heads)0 4237 y(or)i(tails)h(of)f(the)g(e)o(xpression)f
(gi)n(v)o(en.)0 4384 y(If)e(you)f(really)g(w)o(ant)h(to)g(kno)n(w)f
(more)g(about)f(re)o(gular)h(e)o(xpressions,)g(read)g(on,)h(b)n(ut)f
(for)h(the)f(most)h(part,)g(your)f(list)h(administrator)f(should)0
4484 y(include)j(in)i(the)f(topic)g(description)e(what)i(you)g(need)f
(to)i(add)e(to)h(your)f(K)n(e)o(yw)o(ords)g(or)h(Subject)g(line)g(to)h
(match)e(the)h(topic)g(pattern.)0 4631 y(Most)26 b(Mailman)f(topic)h(e)
o(xpressions)e(will)j(be)f(f)o(airly)f(simple)h(re)o(gular)f(e)o
(xpressions,)g(so)i(in)f(this)g(document)e(we)i(will)h(simply)e(gi)n(v)
o(e)0 4730 y(you)c(some)i(common)d(e)o(xamples.)30 b(Re)o(gular)22
b(e)o(xpressions)f(are)h(a)h(bit)f(too)g(comple)o(x)f(to)h(teach)g(in)h
(a)f(fe)n(w)h(lines)f(here,)g(so)h(if)g(you)e(really)0
4830 y(w)o(ant)e(to)g(understand)d(ho)n(w)j(the)f(re)o(gular)g(e)o
(xpressions)f(w)o(ork,)h(you)g(should)g(\002nd)g(a)i(tutorial)e(or)g
(reference)f(else)n(where.)24 b(\(F)o(or)18 b(e)o(xample,)0
4930 y(De)n(vShed)h(has)h(a)h(decent)f(tutorial)f(at)i
Fd(http://www)l(.de)n(vshed.com/Ser)r(v)n(er)p 2149 4930
42 4 v 40 w(Side/Administr)o(ation/Reg)o(Exp/)-6 b Fk(\))0
5076 y(Here)20 b(are)g(some)g(e)o(xamples)f(of)h(possible)g(re)o(gular)
f(e)o(xpressions)g(and)g(matching)g(lines:)p 0 5549 3901
4 v 0 5649 a Ff(14)3051 b(9)84 b(Mailing)25 b(list)e(topics)p
eop end
%%Page: 15 15
TeXDict begin 15 14 bop 567 70 a Fh(Regular)19 b(expr)o(ession)p
1294 100 4 100 v 99 w(Matching)h(lines)p 517 103 2867
4 v 567 173 a Fk(zuf)n(f)p 1294 203 4 100 v 645 w(K)n(e)o(yw)o(ords:)k
(zuf)n(f)567 272 y(zuf)n(f)p 1294 302 V 645 w(K)n(e)o(yw)o(ords:)g
(ZUFF)567 372 y(zuf)n(f)p 1294 402 V 645 w(K)n(e)o(yw)o(ords:)g(Zuf)n
(f)567 472 y(zuf)n(f)p 1294 501 V 645 w(K)n(e)o(yw)o(ords:)g
(amaryllis,)c(zuf)n(f,)f(applesauce)567 571 y(zuf)n(f)p
1294 601 V 645 w(Subject:)25 b([zuf)n(f])19 b(Do)h(you)f(ha)n(v)o(e)h
(the)g(right)g(stuf)n(f)f(for)h(zuf)n(f?)567 671 y(zuf)n(f)p
1294 701 V 645 w(Subject:)25 b(Do)20 b(you)g(ha)n(v)o(e)f(the)h(right)g
(stuf)n(f)g(for)f(zuf)n(f?)567 770 y(zuf)n(f)p 1294 800
V 645 w(Subject:)25 b(What)c(is)g(zuf)n(f?)p 517 804
2867 4 v 567 873 a Fe(n)p Fk([zuf)n(f)p Fe(n)p Fk(])p
1294 903 4 100 v 505 w(K)n(e)o(yw)o(ords:)j([zuf)n(f])567
973 y Fe(n)p Fk([zuf)n(f)p Fe(n)p Fk(])p 1294 1003 V
505 w(Subject:)h([zuf)n(f])19 b(Do)h(you)f(ha)n(v)o(e)h(the)g(right)g
(stuf)n(f?)567 1073 y Fe(n)p Fk([zuf)n(f)p Fe(n)p Fk(])p
1294 1103 V 505 w(Subject:)25 b(Online)20 b(zuf)n(f)f(tutorials)h(\(w)o
(as)h(Re:)26 b([zuf)n(f])18 b(What)j(is)g(zuf)n(f?\))0
1273 y(A)g(fe)n(w)f(notes:)125 1467 y Fe(\017)41 b Fk(The)20
b(matching)f(is)i(case-insensiti)n(v)o(e,)e(so)i(if)g(zuf)n(f)e
(matches,)h(so)h(will)g(ZUFF)-7 b(,)21 b(zuFF)-7 b(,)21
b(and)f(an)o(y)g(other)f(v)n(ariations)h(in)g(capitaliza-)208
1567 y(tion.)125 1723 y Fe(\017)41 b Fk(Some)25 b(characters)g(ha)n(v)o
(e)g(special)h(meaning)e(in)i(a)h(re)o(gular)d(e)o(xpression,)h(so)h
(to)g(match)g(those)f(characters)g(speci\002cally)-5
b(,)26 b(the)o(y)208 1823 y(must)i(be)h(\223escaped\224)e(with)i(a)g
(backslash)e(\()p Fe(n)p Fk(\).)50 b(As)29 b(you)f(can)g(see)h(in)g
(the)f(abo)o(v)o(e)f(e)o(xample,)i([)f(and)g(])h(are)g(such)f
(characters.)208 1922 y(\(Others)23 b(include)h(\223.)-6
b(\224,)25 b(\223?\224,)h(and)e(\223*\224\).)37 b(The)24
b(backslash)f(is)j(also)e(used)h(for)e(other)h(things)g(\(I)g(w)o(asn')
o(t)g(kidding)f(about)g(re)o(gular)208 2022 y(e)o(xpressions)15
b(being)h(comple)o(x:)22 b(consult)17 b(other)f(documentation)e(for)i
(details)i(about)e(other)g(uses)h(of)g(the)g(backslash)f(character\),)
208 2122 y(b)n(ut)k(this)g(is)i(the)e(most)g(lik)o(ely)g(use)h(in)f(a)g
(topic)g(e)o(xpression.)0 2402 y Fg(9.2)100 b(Ho)o(w)28
b(do)g(I)f(subscr)q(ibe)j(to)e(all)g(or)g(only)h(some)f(topics)g(on)g
(a)g(list?)0 2605 y Fk(If)g(topics)g(ha)n(v)o(e)f(been)g(set)i(up)f(by)
f(your)g(mailing)g(list)i(administrator)m(,)f(you)f(can)h(choose)f(to)h
(subscribe)f(to)h(only)f(part)h(of)g(a)g(list)h(by)0
2705 y(selecting)20 b(the)g(topics)g(you)f(w)o(ant)i(to)f(recei)n(v)o
(e.)0 2852 y(If)g(you)f(wish)i(to)f(get)g(all)h(messages)g(sent)f(to)g
(the)h(list,)g(mak)o(e)e(sure)h(you)g(are)g(not)g(subscribed)f(to)h(an)
o(y)f(topics.)104 3057 y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g
(options)g(page.)24 b(\(See)c(Section)g(3.1)g(for)f(more)h(details)g
(on)g(ho)n(w)f(to)i(do)f(this.\))104 3213 y(2.)41 b(Look)19
b(for)g(the)h(section)g(mark)o(ed)f(\223Which)h(topic)g(cate)o(gories)f
(w)o(ould)g(you)h(lik)o(e)g(to)h(subscribe)e(to?\224)208
3341 y(If)26 b(an)o(y)f(topics)h(are)h(de\002ned,)f(you)g(can)g(select)
h(those)f(you)f(wish.)44 b(If)26 b(you)f(do)h(not)g(select)h(an)o(y)f
(topics)g(of)g(interest,)h(you)f(will)208 3441 y(recei)n(v)o(e)19
b(all)h(posts)h(sent)f(to)h(the)f(list.)0 3647 y(Y)-9
b(ou)21 b(probably)d(also)k(w)o(ant)f(to)g(look)g(at)g(Section)g(9.3)f
(which)h(discusses)h(changing)d(your)h(settings)h(for)f(messages)i
(where)e(no)h(topic)g(is)0 3746 y(set.)0 4027 y Fg(9.3)100
b(Ho)o(w)28 b(do)g(I)f(get)i(or)f(a)n(v)n(oid)g(getting)h(messages)g
(with)e(no)i(topic)f(set?)0 4230 y Fk(Some)22 b(messages)g(will)h(not)f
(match)g(an)o(y)g(prede\002ned)e(topic)i(pattern.)30
b(Y)-9 b(ou)22 b(can)g(choose)f(to)i(recei)n(v)o(e)e(or)h(ignore)f
(such)h(non-matching)0 4329 y(messages.)j(If)20 b(you)g(wish)g(to)h
(get)f(all)h(messages)f(sent)h(to)f(the)h(list,)g(mak)o(e)f(sure)g(you)
f(are)h(not)g(subscribed)f(to)i(an)o(y)e(speci\002c)i(topic.)j(\(See)0
4429 y(Section)c(9.2.\))0 4576 y(If)e(you)f(are)g(only)g(subscribed)g
(to)h(some)f(topics,)h(you)f(can)h(either)f(choose)g(to)h(either)f
(recei)n(v)o(e)g(or)h(not)f(recei)n(v)o(e)g(messages)h(with)g(no)f
(topic)0 4675 y(set,)k(much)e(the)h(w)o(ay)g(you)g(can)g(choose)f(to)h
(subscribe)g(only)f(to)h(certain)g(topics.)0 4822 y(T)-7
b(o)20 b(change)f(this)i(setting,)104 5016 y(1.)41 b(Log)19
b(in)h(to)h(your)e(member)g(options)g(page.)24 b(\(See)c(Section)g(3.1)
g(for)f(more)h(details)g(on)g(ho)n(w)f(to)i(do)f(this.\))104
5172 y(2.)41 b(Look)19 b(for)g(the)h(section)g(mark)o(ed)f(\223Do)h
(you)g(w)o(ant)g(to)g(recei)n(v)o(e)f(message)h(that)h(do)e(not)h
(match)g(an)o(y)f(topic)h(\002lter?\224)208 5300 y(If)k(you)g(wish)h
(to)g(recei)n(v)o(e)e(messages)i(with)g(no)f(topic)h(set,)h(select)f
(\223Y)-8 b(es.)i(\224)39 b(If)24 b(you)g(do)g(not)h(wish)g(to)g(recei)
n(v)o(e)e(such)i(messages,)208 5400 y(choose)19 b(\223No.)-6
b(\224)p 0 5549 3901 4 v 0 5649 a Ff(9.2)83 b(Ho)o(w)23
b(do)h(I)f(subscr)q(ibe)f(to)i(all)g(or)f(only)g(some)g(topics)g(on)g
(a)h(list?)1612 b(15)p eop end
%%Page: 16 16
TeXDict begin 16 15 bop 0 83 a Fk(This)20 b(setting)h(has)f(no)g(ef)n
(fect)f(if)i(you)e(are)h(not)g(subscribed)f(to)h(an)o(y)g(topics.)0
408 y Fl(10)120 b(Setting)35 b(other)g(options)0 658
y Fg(10.1)100 b(Change)30 b(Globally?)36 b(Set)28 b(Globally?)35
b(What)29 b(does)f(that)g(mean?)0 861 y Fk(F)o(or)d(some)g(of)g(the)h
(options)e(gi)n(v)o(en)g(in)i(your)e(member)g(options)g(page,)i(there)f
(is)h(a)g(checkbox)d(which)i(says)h(\223Change)e(Globally\224)h(or)0
960 y(\223Set)30 b(Globally)-5 b(.)f(\224)51 b(This)30
b(means)f(that)h(if)g(you)e(change)g(this)i(option,)g(you)f(can)g(also)
h(ha)n(v)o(e)f(the)g(change)g(made)f(for)h(all)h(your)e(other)0
1060 y(subscriptions)21 b(on)i(the)f(same)h(domain.)31
b(This)23 b(can)f(be)h(handy)e(if,)i(for)f(e)o(xample,)g(you)g(w)o(ant)
g(to)h(mak)o(e)f(sure)h(all)g(your)e(passw)o(ords)i(are)0
1160 y(the)d(same,)g(or)g(you)g(are)g(going)f(on)g(v)n(acation)g(and)h
(w)o(ant)g(to)h(turn)e(of)n(f)h(mail)g(deli)n(v)o(ery)e(from)i(all)g
(the)h(lists.)0 1442 y Fg(10.2)100 b(Ho)o(w)28 b(do)g(I)g(change)h(m)o
(y)e(name)i(as)f(Mailman)h(kno)o(ws)f(it?)0 1645 y Fk(T)-7
b(o)20 b(change)f(your)g(subscription)g(name,)104 1850
y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g(options)g(page.)24
b(\(See)c(Section)g(3.1)g(for)f(more)h(details)g(on)g(ho)n(w)f(to)i(do)
f(this.\))104 2011 y(2.)41 b(In)31 b(the)h(section)f(mark)o(ed)g
(\223Changing)f(your)g(LISTN)m(AME)h(membership)f(information,)-6
b(\224)32 b(enter)f(your)g(ne)n(w)h(name)f(in)h(the)208
2111 y(appropriate)17 b(box.)0 2315 y(This)25 b(can)f(also)h(be)f
(changed)f(for)g(multiple)h(lists)i(at)f(the)f(same)h(time)g(if)f(you)g
(are)g(subscribed)f(to)i(more)f(than)g(one)f(list)j(on)e(the)g(same)0
2414 y(domain.)g(See)c(Section)g(10.1)f(for)h(information)d(about)j
(changing)e(settings)i(globally)-5 b(.)0 2561 y Fh(Note:)24
b Fk(Y)-9 b(ou)20 b(do)g(not)g(need)f(to)h(ha)n(v)o(e)g(a)h
(subscription)d(name)i(set.)0 2844 y Fg(10.3)100 b(Ho)o(w)28
b(do)g(I)g(set)f(m)o(y)g(pref)m(erred)j(language?)0 3047
y Fk(Mailman)15 b(is)i(multi-lingual,)e(meaning)f(its)j(interf)o(ace)e
(has)i(been)e(translated)g(to)h(man)o(y)f(dif)n(ferent)f(languages.)22
b(Y)-9 b(our)15 b(list)i(administrator)0 3147 y(can)24
b(enable)g(v)n(arious)f(languages)g(for)h(their)g(use)h(when)e
(interacting)h(with)g(Mailman.)37 b(\(F)o(or)24 b(a)h(complete)e
(listing)h(of)h(the)f(languages)0 3246 y(see)e Fd(http://www)l
(.list.org/i18n)o(.h)o(tml)-6 b Fk(.\))29 b(If)21 b(your)g(list)h(has)g
(other)f(languages)f(enabled,)g(you)h(may)g(be)g(able)g(to)h(ha)n(v)o
(e)f(the)g(web)h(interf)o(ace,)0 3346 y(etc.)j(in)c(a)f(language)f(of)h
(your)f(choice.)0 3493 y Fh(Note:)34 b Fk(This)25 b(does)f(NO)m(T)h
(necessarily)f(mean)g(that)h(all)h(the)f(posts)g(sent)g(to)g(the)g
(list)h(will)f(be)g(in)g(the)g(language)e(you)h(selected.)39
b(Only)0 3593 y(the)19 b(pre-prepared)c(te)o(xts)k(presented)f(by)g
(Mailman)g(will)h(be)g(af)n(fected)f(by)g(this)h(setting.)25
b(Posts)19 b(are)g(in)g(whate)n(v)o(er)e(language)g(the)i(poster)0
3692 y(uses.)0 3839 y(Y)-9 b(our)19 b(preferred)f(language)g(is)j(set)g
(when)e(you)g(subscribe)g(\(see)i(Section5.1\),)d(and)h(can)h(be)g
(changed)e(later)i(if)g(the)g(list)h(supports)e(more)0
3939 y(than)h(one)f(language.)0 4085 y(T)-7 b(o)20 b(change)f(your)g
(preferred)f(language)h(in)h(Mailman,)104 4290 y(1.)41
b(Log)19 b(in)h(to)h(your)e(member)g(options)g(page.)24
b(\(See)c(Section)g(3.1)g(for)f(instructions)g(on)h(ho)n(w)g(to)g(do)g
(this.\))104 4451 y(2.)41 b(Go)21 b(to)g(the)g(section)g(mark)o(ed)e
(\223What)j(language)d(do)h(you)h(prefer?\224)26 b(and)20
b(choose)g(the)h(appropriate)e(language)g(from)h(the)h(drop-)208
4551 y(do)n(wn)e(list.)26 b(If)20 b(there)f(is)j(no)d(drop-do)n(wn)e
(list)22 b(of)e(languages,)e(the)i(list)i(you)d(are)h(on)g(probably)e
(only)h(supports)g(one)h(language.)0 4755 y(If)d(your)e(list)j(does)f
(not)f(support)g(the)h(language)e(you)h(w)o(ould)g(prefer)g(to)h(use,)g
(you)f(may)h(contact)f(the)h(list)h(administrator)d(\(LISTN)m(AME-)0
4855 y(o)n(wner@DOMAIN\))26 b(to)h(see)h(if)g(it)g(can)f(be)g(added,)h
(b)n(ut)g(remember)d(that)j(this)g(may)f(mean)f(some)h(w)o(ork)g(that)h
(the)f(list)i(and/or)d(site)0 4954 y(administrator\(s\))18
b(do)i(not)g(ha)n(v)o(e)f(time)i(or)f(the)g(ability)g(to)g(do.)0
5101 y(If)32 b(your)e(language)g(of)i(choice)f(is)i(not)e(a)n(v)n
(ailable)h(because)f(no)g(translation)g(e)o(xists)h(for)g(Mailman,)i
(please)d(consider)g(v)n(olunteer)n(-)0 5201 y(ing)j(your)g(time)g(as)i
(a)f(translator)-5 b(.)67 b(F)o(or)35 b(more)e(information)g(you)g(may)
h(w)o(ant)h(to)g(consult)f(the)h(mailman-i18n)c(mailing)j(list)i(at)0
5300 y Fd(http://mail.p)n(ython.org)o(/mail)o(man/)o(li)o(stinf)m(o/ma)
o(ilma)o(n-i)o(18)o(n)-6 b Fk(.)52 b(The)28 b(current)g(status)h(of)g
(internationalization)d(ef)n(forts)i(is)i(a)n(v)n(ailable)e(at)0
5400 y Fd(http://www)l(.list.org/i18n)o(.h)o(tml)-6 b
Fk(.)p 0 5549 3901 4 v 0 5649 a Ff(16)2871 b(10)84 b(Setting)24
b(other)f(options)p eop end
%%Page: 17 17
TeXDict begin 17 16 bop 0 83 a Fh(Note:)31 b Fk(i18n)22
b(is)j(a)f(common)d(short-hand)g(for)i(\223internationalization\224)d
(because)j(the)g(w)o(ord)g(starts)h(with)g(an)f(i,)i(ends)e(with)h(an)f
(n,)h(and)0 183 y(has)c(18)g(letters)h(in)f(between.)k(If)c(you)g
(mumble)f(a)h(bit,)g(i18n)g(e)n(v)o(en)f(sounds)g(a)i(bit)f(lik)o(e)h
(\223internationalization.)-6 b(\224)0 464 y Fg(10.4)100
b(Ho)o(w)28 b(do)g(I)g(a)n(v)n(oid)g(ha)n(ving)h(m)o(y)e(name)i(appear)
h(on)f(the)f(subscr)q(ibers)h(list?)35 b(\(the)28 b(hide)h(option\))0
667 y Fk(If)c(you)f(do)h(not)g(w)o(ant)g(to)h(ha)n(v)o(e)e(your)g
(email)h(address)g(sho)n(w)g(up)g(on)g(the)g(subscriber)f(list)i(for)f
(an)o(y)f(reason,)i(you)e(can)h(opt)g(to)g(ha)n(v)o(e)g(it)0
767 y(concealed.)0 914 y(Common)i(reasons)g(for)g(doing)g(this)i
(include)e(a)n(v)n(oiding)f(unsolicited)h(b)n(ulk)h(email)g(\(spam\).)
47 b(By)29 b(def)o(ault,)g(the)f(subscribers)f(list)i(is)0
1013 y(obscured)23 b(to)h(hinder)f(spam)h(harv)o(esters,)g(b)n(ut)h(if)
f(you)g(feel)g(this)h(is)g(insuf)n(\002cient)f(it')-5
b(s)25 b(easy)f(enough)f(to)h(remo)o(v)o(e)f(your)g(address)h(from)0
1113 y(the)g(subscriber)f(list)j(gi)n(v)o(en)c(in)j(the)f(information)e
(pages)i(or)g(by)f(email)i(request.)36 b(\(Note)24 b(that)g(this)h
(does)f(not)g(conceal)f(your)g(address)0 1213 y(from)18
b(the)i(list)g(administrators.\))j(Y)-9 b(ou)19 b(may)g(wish)g(to)h
(see)g(Section)f(11.2)f(for)h(more)f(information)f(on)i(what)h(Mailman)
e(can)i(do)f(to)g(help)0 1312 y(a)n(v)n(oid)h(spam.)0
1459 y(T)-7 b(o)20 b(change)f(this)i(setting)f(using)g(the)g(web)g
(interf)o(ace:)104 1658 y(1.)41 b(Log)19 b(in)h(to)h(your)e(member)g
(options)g(page.)24 b(\(See)c(Section)g(3.1)g(for)f(instructions)g(on)h
(ho)n(w)g(to)g(do)g(this.\))104 1817 y(2.)41 b(Go)24
b(to)g(the)h(section)f(mark)o(ed)f(\223Conceal)h(yourself)f(from)g
(subscriber)g(list?\224)39 b(and)23 b(choose)h(\223Y)-8
b(es\224)24 b(to)h(hide)f(your)f(name)h(from)208 1916
y(the)c(list,)h(or)f(\223No\224)g(to)g(allo)n(w)g(your)f(name)h(to)g
(appear)f(on)h(the)g(list.)0 2115 y(T)-7 b(o)20 b(change)f(this)i
(setting)f(using)g(the)g(email)g(interf)o(ace:)104 2314
y(1.)41 b(Send)19 b(a)i(mail)f(to)h Fd(LISTNAME-request@DOMAIN)c
Fk(with)j(the)g(command)f Fc(set)i(hide)e(on)h Fk(or)g
Fc(set)h(hide)f(of)o(f)12 b Fk(.)208 2444 y(Commands)21
b(can)h(appear)f(in)h(either)g(the)g(body)f(or)h(the)g(subject)g(of)g
(the)g(message.)30 b(\(See)23 b(Section)f(3.2)f(for)h(more)f
(information)208 2543 y(about)e(sending)g(mail)h(commands.\))104
2702 y(2.)41 b(Set)20 b(it)h(to)f(\223on\224)g(to)g(conceal)f(your)g
(email)h(address)g(from)f(the)h(membership)e(list,)j(or)f(\223of)n(f)5
b(\224)19 b(to)h(stop)g(concealing)e(your)h(address.)0
3026 y Fl(11)120 b(Other)35 b(common)e(questions)0 3276
y Fg(11.1)100 b(Ho)o(w)28 b(do)g(I)g(vie)n(w)g(the)g(list)f(archiv)n
(es?)0 3479 y Fk(If)22 b(the)g(list)h(is)g(being)e(archi)n(v)o(ed,)f
(pre)n(viously)g(posted)i(messages)g(can)g(be)g(vie)n(wed)f(by)h(going)
e(to)i(the)g(archi)n(v)o(e')-5 b(s)21 b(web)h(pages,)g(a)h(link)e(to)0
3578 y(which)g(can)g(be)g(found)f(on)h(the)g(list)i(information)c(page)
h(and)h(in)h(the)f Fd(List-Archiv)n(e:)26 b Fk(header)21
b(of)g(e)n(v)o(ery)f(posted)g(message)i(\(unless)f(your)0
3678 y(list)e(administrator)d(has)i(disabled)f(such)h(headers\).)23
b(Man)o(y)16 b(mail)i(programs)e(hide)i(the)g Fd(List-Archiv)n(e:)k
Fk(mail)c(header)m(,)f(so)h(you)f(may)g(ha)n(v)o(e)0
3777 y(to)j(tell)h(your)e(mail)i(program)d(to)i(allo)n(w)g(you)f(to)i
(vie)n(w)f(full)g(headers)f(before)g(you)g(will)i(be)f(able)g(to)h(see)
f(it.)0 3924 y(Public)31 b(archi)n(v)o(es)f(usually)h(ha)n(v)o(e)f
(addresses)h(of)g(the)g(form)g Fd(http://WEBSER)l(VER/piper)r(mai)o
(l/L)o(IST)o(NAME/)26 b Fk(and)31 b(pri)n(v)n(ate)f(archi)n(v)o(es)0
4024 y(usually)20 b(ha)n(v)o(e)f(addresses)h(of)g(the)g(form)f
Fd(http://WEBSER)l(VER/mailman/pr)q(iv)n(ate)o(/LI)o(STNAME)-6
b Fk(.)0 4171 y(See)21 b(Section)e(3.1)h(for)g(more)f(information)f(on)
h(\002nding)h(the)g(addresses)g(of)g(a)g(list.)0 4452
y Fg(11.2)100 b(What)29 b(does)f(Mailman)h(do)g(to)f(help)h(protect)f
(me)g(from)g(unsolicited)h(b)n(ulk)g(email)f(\(spam\)?)0
4655 y Fk(A)c(technical)e(list')-5 b(s)24 b(archi)n(v)o(es)e(may)h
(include)f(answers)h(to)g(a)g(range)f(of)h(dif)n(ferent)f(questions.)32
b(Often,)23 b(the)g(people)f(who)h(ha)n(v)o(e)f(posted)0
4755 y(these)e(answers)h(w)o(ould)e(be)h(happ)o(y)f(to)i(help)f
(someone)f(who)g(doesn')o(t)g(quite)h(understand)e(the)j(answer)m(,)e
(and)h(don')o(t)e(mind)i(gi)n(ving)f(their)0 4855 y(address)i(out)f
(for)h(that)g(purpose.)26 b(But)c(although)d(it)j(w)o(ould)f(be)g(w)o
(onderful)e(if)i(e)n(v)o(eryone)e(could)h(contact)h(each)f(other)h
(easily)-5 b(,)21 b(we)g(also)0 4954 y(w)o(ant)f(to)h(mak)o(e)e(sure)h
(that)h(the)f(list)h(and)f(list)h(archi)n(v)o(es)e(are)h(not)g(ab)n
(used)g(by)g(people)f(who)g(send)h(spam.)0 5101 y(T)-7
b(o)21 b(mak)o(e)f(a)h(range)e(of)i(options)e(a)n(v)n(ailable)h(to)h
(list)h(administrators,)d(Mailman)h(allo)n(ws)h(a)g(v)n(ariety)e(of)h
(con\002gurations)f(to)h(help)g(protect)0 5201 y(email)j(addresses.)33
b(Man)o(y)22 b(of)h(these)g(settings)g(are)g(optional)f(to)h(the)g
(list)h(administrator)m(,)e(so)h(your)f(particular)f(list)k(may)d(be)h
(set)h(up)e(in)0 5300 y(dif)n(ferent)j(w)o(ays.)45 b(List)27
b(administrators)e(must)i(w)o(alk)g(a)g(\002ne)g(line)g(between)f
(protecting)e(subscribers)i(and)g(making)g(it)h(dif)n(\002cult)f(for)0
5400 y(people)19 b(to)h(get)h(in)f(touch.)p 0 5549 3901
4 v 0 5649 a Ff(10.4)84 b(Ho)o(w)22 b(do)i(I)f(a)n(v)n(oid)h(ha)n(ving)
g(m)o(y)e(name)i(appear)g(on)f(the)g(subscr)q(ibers)f(list?)29
b(\(the)23 b(hide)h(option\))608 b(17)p eop end
%%Page: 18 18
TeXDict begin 18 17 bop 125 83 a Fe(\017)41 b Fk(Subscriber)18
b(lists)307 249 y Fh(\226)41 b Fk(The)30 b(list)h(administrator)d(can)i
(choose)f(to)i(ha)n(v)o(e)e(the)h(subscriber)f(list)i(public,)h(vie)n
(w)o(able)d(only)g(to)h(list)i(members,)f(or)390 348
y(vie)n(w)o(able)20 b(only)f(to)h(list)i(administrators.)307
481 y Fh(\226)41 b Fk(The)20 b(subscriber)g(list)h(is)g(sho)n(wn)f
(with)h(the)f(addresses)g(obscured)f(to)i(mak)o(e)f(it)h(dif)n
(\002cult)f(for)f(spam)i(harv)o(esters)e(to)i(collect)390
580 y(your)e(address.)307 713 y Fh(\226)41 b Fk(Y)-9
b(ou)20 b(can)g(choose)f(to)i(ha)n(v)o(e)e(your)g(address)h(hidden)f
(from)g(the)h(subscriber)f(list.)26 b(\(See)21 b(Section)e(10.4)h(for)f
(more)h(informa-)390 812 y(tion.\))307 945 y Fh(\226)41
b(Note:)25 b Fk(The)19 b(entire)h(subscriber)f(list)i(is)h(al)o(w)o
(ays)e(a)n(v)n(ailable)g(to)g(the)h(list)g(administrators.)125
1110 y Fe(\017)41 b Fk(List)20 b(archi)n(v)o(es)307 1276
y Fh(\226)41 b Fk(The)28 b(list)h(administrator)e(can)h(choose)f(for)g
(the)h(archi)n(v)o(es)f(to)i(be)f(public,)h(vie)n(w)o(able)e(only)g(to)
i(members)e(\(pri)n(v)n(ate\),)h(or)390 1376 y(completely)19
b(una)n(v)n(ailable.)307 1508 y Fh(\226)41 b Fk(The)28
b(HTML)h(archi)n(v)o(es)e(which)h(are)h(created)f(by)g(Pipermail)g
(\(the)g(archi)n(ving)f(program)f(which)i(comes)h(def)o(ault)e(with)390
1608 y(Mailman\))d(contain)f(only)h(obscured)e(addresses.)38
b(Other)24 b(archi)n(ving)e(programs)h(are)h(a)n(v)n(ailable)g(and)g
(can)g(do)g(dif)n(ferent)390 1707 y(le)n(v)o(els)c(of)g(obfuscation)e
(to)j(mak)o(e)e(addresses)h(less)i(readable.)307 1840
y Fh(\226)41 b Fk(If)18 b(you)g(wish)g(to)h(be)f(more)f(sure,)h(you)g
(can)g(set)h(the)f(mail)g(header)f(\223)p Fd(X-No-archiv)n(e:)23
b Fk(yes\224)18 b(and)g(Mailman)f(will)i(not)f(archi)n(v)o(e)390
1939 y(your)h(posts.)25 b(Similarly)-5 b(,)20 b(you)f(can)h(set)h(the)f
(mail)g(header)f(\223)p Fd(X-Archiv)n(e:)25 b Fk(no\224)19
b(to)i(disable)f(archi)n(ving.)390 2055 y Fh(W)-5 b(ar)o(ning:)24
b Fk(This)c(does)g(not)f(stop)h(other)f(members)g(from)g(quoting)f
(your)h(posts,)h(possibly)f(e)n(v)o(en)g(including)f(your)h(email)390
2155 y(address.)125 2320 y Fe(\017)41 b Fk(Limited)19
b(posting)g(to)i(the)f(lists)307 2486 y Fh(\226)41 b
Fk(The)20 b(list)i(administrator)d(can)h(choose)g(who)g(can)g(post)h
(to)f(the)h(list.)27 b(Most)21 b(lists)h(are)e(either)g(moderated)f
(\(a)i(moderator)d(or)390 2586 y(administrator)g(re)n(vie)n(ws)g(each)h
(posting\),)f(set)i(so)f(only)f(subscribers)g(may)h(post)g(to)g(the)g
(list,)h(or)f(allo)n(w)g(an)o(yone)e(to)i(post)g(to)390
2685 y(the)h(list.)307 2818 y Fh(\226)41 b Fk(By)20 b(allo)n(wing)e
(only)g(subscribers)h(to)g(post)g(to)g(a)h(list,)g(Mailman)e(often)h
(blocks)f(all)i(spam)f(and)g(some)g(viruses)f(from)h(being)390
2917 y(sent)i(through)d(the)i(list.)26 b(As)21 b(such,)f(this)g(is)i(a)
e(f)o(airly)g(common)e(setting)i(used)g(by)g(list)h(administrators.)125
3083 y Fe(\017)41 b Fk(Anon)o(ymous)17 b(lists)307 3249
y Fh(\226)41 b Fk(Lists)22 b(can)f(also)h(be)f(made)f(fully)g(anon)o
(ymous:)25 b(all)c(identifying)e(information)g(about)h(the)h(sender)f
(is)i(stripped)f(from)f(the)390 3348 y(header)f(before)g(the)h(message)
g(is)h(sent)g(on.)307 3481 y Fh(\226)41 b Fk(This)27
b(is)g(not)e(typically)h(used)g(for)f(anti-spam)g(measures)h(\(it)g
(has)h(other)e(uses\),)i(b)n(ut)g(it)f(could)g(be)g(used)g(in)g(that)g
(w)o(ay)g(if)390 3580 y(desired.)0 3809 y(Of)c(course,)f(man)o(y)f
(address-obscuring)e(methods)i(can)i(be)f(circumv)o(ented)e(by)i
(determined)f(people,)g(so)i(be)g(a)o(w)o(are)f(that)g(the)h(protec-)0
3909 y(tions)e(used)g(may)g(not)g(be)g(enough.)0 4236
y Fl(A)119 b(Email)32 b(commands)i(quic)n(k)f(ref)l(erence)208
4454 y Fk(con\002rm)19 b Fb(<)p Fk(CONFIRMA)-9 b(TION-STRING)p
Fb(>)390 4620 y Fk(Con\002rm)23 b(an)h(action.)36 b(The)23
b(con\002rmation-string)e(is)k(required)d(and)h(should)g(be)h(supplied)
f(within)g(a)i(mailback)d(con\002r)n(-)390 4720 y(mation)e(notice.)208
4885 y(end)390 5051 y(Stop)g(processing)f(commands.)k(Use)e(this)g(if)f
(your)f(mail)i(program)d(automatically)g(adds)i(a)h(signature)e
(\002le.)208 5216 y(help)390 5382 y(Recei)n(v)o(e)h(a)h(cop)o(y)e(of)h
(the)g(help)g(message.)p 0 5549 3901 4 v 0 5649 a Ff(18)2447
b(A)83 b(Email)25 b(commands)e(quic)n(k)g(ref)n(erence)p
eop end
%%Page: 19 19
TeXDict begin 19 18 bop 208 83 a Fk(info)390 249 y(Get)21
b(information)d(about)h(this)i(mailing)e(list.)208 415
y(lists)390 581 y(See)i(a)f(list)i(of)e(the)g(public)f(mailing)h(lists)
h(on)f(this)h(GNU)f(Mailman)g(serv)o(er)-5 b(.)208 747
y(passw)o(ord)19 b([)p Fb(<)p Fk(OLDP)-8 b(ASSW)o(ORD)p
Fb(>)21 b(<)p Fk(NEWP)-8 b(ASSW)o(ORD)p Fb(>)p Fk(])21
b([address=)p Fb(<)p Fk(ADDRESS)p Fb(>)p Fk(])390 913
y(Retrie)n(v)o(e)16 b(or)g(change)f(your)g(passw)o(ord.)23
b(W)m(ith)17 b(no)f(ar)o(guments,)f(this)h(returns)g(your)f(current)g
(passw)o(ord.)23 b(W)m(ith)17 b(ar)o(guments)390 1013
y Fb(<)p Fk(OLDP)-8 b(ASSW)o(ORD)p Fb(>)21 b Fk(and)f
Fb(<)p Fk(NEWP)-8 b(ASSW)o(ORD)p Fb(>)21 b Fk(you)f(can)g(change)f
(your)g(passw)o(ord.)208 1179 y(set)i(...)390 1345 y(Set)g(or)f(vie)n
(w)g(your)f(membership)f(options.)390 1461 y(Use)25 b(`set)g(help')e
(\(without)g(the)i(quotes\))e(to)h(get)h(a)f(more)g(detailed)g(list)h
(of)f(the)g(options)g(you)f(can)h(change.)36 b(This)24
b(list)i(is)390 1561 y(also)21 b(gi)n(v)o(en)e(in)h(Appendix)e(B.)390
1677 y(Use)j(`set)g(sho)n(w')e(\(without)g(the)i(quotes\))e(to)h(vie)n
(w)g(your)f(current)g(option)g(settings.)208 1843 y(subscribe)g([)p
Fb(<)p Fk(P)-8 b(ASSW)o(ORD)p Fb(>)p Fk(])21 b([digest\227nodigest])c
([address=)p Fb(<)p Fk(ADDRESS)p Fb(>)p Fk(])390 2009
y(Subscribe)25 b(to)h(this)g(mailing)f(list.)43 b(Y)-9
b(our)25 b(passw)o(ord)g(must)h(be)g(gi)n(v)o(en)e(to)i(unsubscribe)e
(or)i(change)e(your)h(options,)h(b)n(ut)390 2109 y(if)32
b(you)e(omit)h(the)g(passw)o(ord,)i(one)d(will)i(be)f(generated)f(for)g
(you.)57 b(Y)-9 b(ou)31 b(may)f(be)h(periodically)f(reminded)f(of)i
(your)390 2208 y(passw)o(ord.)390 2325 y(The)21 b(ne)o(xt)g(ar)o
(gument)e(may)i(be)h(either:)27 b(`nodigest')20 b(or)h(`digest')g(\(no)
f(quotes!\).)28 b(If)21 b(you)g(wish)g(to)h(subscribe)f(an)g(address)
390 2424 y(other)f(than)g(the)g(address)g(you)g(sent)g(this)h(request)f
(from,)f(you)h(may)f(specify)h(`address=)p Fb(<)p Fk(ADDRESS)p
Fb(>)p Fk(')f(\(no)g(brack)o(ets)390 2524 y(around)g(the)h(email)g
(address,)f(and)h(no)g(quotes!\))208 2690 y(unsubscribe)e([)p
Fb(<)p Fk(P)-8 b(ASSW)o(ORD)p Fb(>)p Fk(])21 b([address=)p
Fb(<)p Fk(ADDRESS)p Fb(>)p Fk(])390 2856 y(Unsubscribe)e(from)g(the)h
(mailing)f(list.)26 b(If)20 b(gi)n(v)o(en,)e(your)h(passw)o(ord)h(must)
g(match)f(your)g(current)f(passw)o(ord.)25 b(If)20 b(omitted,)390
2956 y(a)30 b(con\002rmation)d(email)i(will)g(be)g(sent)h(to)f(the)g
(unsubscribing)d(address.)51 b(If)29 b(you)f(wish)i(to)f(unsubscribe)e
(an)i(address)390 3055 y(other)20 b(than)g(the)g(address)g(you)g(sent)g
(this)h(request)f(from,)f(you)h(may)f(specify)h(`address=)p
Fb(<)p Fk(ADDRESS)p Fb(>)p Fk(')f(\(no)g(brack)o(ets)390
3155 y(around)g(the)h(email)g(address,)f(and)h(no)g(quotes!\))208
3321 y(who)f([)p Fb(<)p Fk(P)-8 b(ASSW)o(ORD)p Fb(>)p
Fk(])21 b([address=)p Fb(<)p Fk(ADDRESS)p Fb(>)p Fk(])390
3487 y(See)i(e)n(v)o(eryone)d(who)h(is)i(on)f(this)h(mailing)e(list.)33
b(The)21 b(roster)h(is)h(limited)f(to)h(list)g(members)e(only)-5
b(,)21 b(and)h(you)f(must)i(supply)390 3587 y(your)g(membership)e
(passw)o(ord)i(to)h(retrie)n(v)o(e)f(it.)36 b(If)23 b(you')l(re)f
(posting)h(from)f(an)i(address)f(other)g(than)g(your)g(membership)390
3686 y(address,)i(specify)f(your)g(membership)f(address)h(with)h
(`address=)p Fb(<)p Fk(ADDRESS)p Fb(>)p Fk(')e(\(no)h(brack)o(ets)g
(around)f(the)i(email)390 3786 y(address,)20 b(and)f(no)h(quotes!\))0
4113 y Fl(B)119 b(Member)34 b(options)h(quic)n(k)d(ref)l(erence)208
4332 y Fk(set)21 b(help)390 4498 y(Sho)n(w)f(this)h(detailed)e(help.)
208 4664 y(set)i(sho)n(w)e([address=)p Fb(<)p Fk(ADDRESS)p
Fb(>)p Fk(])390 4830 y(V)-5 b(ie)n(w)21 b(your)e(current)f(option)h
(settings.)26 b(If)20 b(you')l(re)e(posting)h(from)g(an)h(address)g
(other)f(than)h(your)f(membership)f(address,)390 4930
y(specify)24 b(your)g(membership)f(address)h(with)h(`address=)p
Fb(<)p Fk(ADDRESS)p Fb(>)p Fk(')e(\(no)h(brack)o(ets)h(around)d(the)j
(email)g(address,)390 5029 y(and)20 b(no)g(quotes!\).)208
5195 y(set)h(authenticate)d Fb(<)p Fk(P)-8 b(ASSW)o(ORD)p
Fb(>)22 b Fk([address=)p Fb(<)p Fk(ADDRESS)p Fb(>)p Fk(])p
0 5549 3901 4 v 3808 5649 a Ff(19)p eop end
%%Page: 20 20
TeXDict begin 20 19 bop 390 83 a Fk(T)-7 b(o)23 b(set)g(an)o(y)f(of)g
(your)g(options,)f(you)h(must)h(include)e(this)i(command)e(\002rst,)i
(along)f(with)h(your)e(membership)g(passw)o(ord.)390
183 y(If)h(you')l(re)d(posting)i(from)g(an)g(address)h(other)e(than)i
(your)e(membership)g(address,)h(specify)g(your)f(membership)g(address)
390 282 y(with)h(`address=)p Fb(<)p Fk(ADDRESS)p Fb(>)p
Fk(')d(\(no)h(brack)o(ets)h(around)e(the)i(email)h(address,)e(and)h(no)
f(quotes!\).)208 448 y(set)i(ack)f(on)208 548 y(set)h(ack)f(of)n(f)390
714 y(When)j(the)h(`ack')f(option)f(is)i(turned)e(on,)i(you)e(will)j
(recei)n(v)o(e)d(an)h(ackno)n(wledgement)d(message)k(whene)n(v)o(er)d
(you)i(post)g(a)390 814 y(message)d(to)h(the)f(list.)208
980 y(set)h(digest)f(plain)208 1079 y(set)h(digest)f(mime)208
1179 y(set)h(digest)f(of)n(f)390 1345 y(When)j(the)g(`digest')f(option)
g(is)i(turned)e(of)n(f,)h(you)f(will)i(recei)n(v)o(e)e(postings)g
(immediately)g(when)h(the)o(y)f(are)h(posted.)33 b(Use)390
1445 y(`set)26 b(digest)f(plain')f(if)i(instead)f(you)f(w)o(ant)h(to)g
(recei)n(v)o(e)f(postings)h(b)n(undled)e(into)i(a)h(plain)f(te)o(xt)g
(digest)g(\(i.e.)39 b(RFC)27 b(1153)390 1544 y(digest\).)d(Use)17
b(`set)g(digest)g(mime')f(if)h(instead)f(you)g(w)o(ant)h(to)g(recei)n
(v)o(e)e(postings)i(b)n(undled)e(together)g(into)h(a)i(MIME)e(digest.)
208 1710 y(set)21 b(deli)n(v)o(ery)d(on)208 1810 y(set)j(deli)n(v)o
(ery)d(of)n(f)390 1976 y(T)l(urn)j(deli)n(v)o(ery)e(on)i(or)g(of)n(f.)
28 b(This)21 b(does)g(not)g(unsubscribe)e(you,)i(b)n(ut)g(instead)g
(tells)h(Mailman)f(not)g(to)g(deli)n(v)o(er)f(messages)390
2076 y(to)f(you)f(for)g(no)n(w)-5 b(.)24 b(This)19 b(is)h(useful)e(if)h
(you')l(re)e(going)g(on)i(v)n(acation.)k(Be)d(sure)e(to)h(use)g(`set)g
(deli)n(v)o(ery)f(on')g(when)g(you)g(return)390 2175
y(from)h(v)n(acation!)208 2341 y(set)i(myposts)e(on)208
2441 y(set)i(myposts)e(of)n(f)390 2607 y(Use)f(`set)g(myposts)f(of)n(f)
5 b(')16 b(to)i(a)n(v)n(oid)f(recei)n(ving)f(copies)h(of)g(messages)g
(you)g(post)g(to)h(the)f(list.)26 b(This)17 b(has)h(no)f(ef)n(fect)g
(if)g(you')l(re)390 2707 y(recei)n(ving)i(digests.)208
2873 y(set)i(hide)e(on)208 2972 y(set)i(hide)e(of)n(f)390
3138 y(Use)i(`set)g(hide)e(on')h(to)g(conceal)f(your)g(email)i(address)
e(when)h(people)f(request)h(the)g(membership)e(list.)208
3304 y(set)j(duplicates)e(on)208 3404 y(set)i(duplicates)e(of)n(f)390
3570 y(Use)k(`set)g(duplicates)e(of)n(f)5 b(')21 b(if)h(you)g(w)o(ant)g
(Mailman)g(not)g(to)g(send)g(you)f(messages)i(if)f(your)f(address)h(is)
h(e)o(xplicitly)e(men-)390 3670 y(tioned)g(in)h(the)g(T)-7
b(o:)29 b(or)21 b(Cc:)30 b(\002elds)22 b(of)g(the)f(message.)30
b(This)22 b(can)g(reduce)e(the)i(number)e(of)i(duplicate)f(postings)g
(you)g(will)390 3769 y(recei)n(v)o(e.)208 3935 y(set)g(reminders)d(on)
208 4035 y(set)j(reminders)d(of)n(f)390 4201 y(Use)j(`set)g(reminders)d
(of)n(f)5 b(')19 b(if)i(you)e(w)o(ant)h(to)h(disable)f(the)g(monthly)e
(passw)o(ord)i(reminder)e(for)i(this)h(mailing)e(list.)p
0 5549 3901 4 v 0 5649 a Ff(20)2488 b(B)83 b(Member)24
b(options)g(quic)n(k)f(ref)n(erence)p eop end
%%Trailer

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