aboutsummaryrefslogblamecommitdiffstats
path: root/doc/mailman-member.ps
blob: a1f13611ed89fac3512f8503b32201dbea664c3e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
              
                                                             
                           









                                                                   
                                         




















































                                                                        
                                  












































































































                                                                          
      






































































































































































































































                                                                                            
                                                    

































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                       
%!PS-Adobe-2.0
%%Creator: dvips(k) 5.95a Copyright 2005 Radical Eye Software
%%Title: mailman-member.dvi
%%Pages: 20
%%PageOrder: Ascend
%%BoundingBox: 0 0 595 842
%%DocumentFonts: Helvetica Helvetica-Oblique Times-Roman Times-Bold
%%+ CMSY10 Times-Italic CMMI10
%%DocumentPaperSizes: a4
%%EndComments
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -N0 -o mailman-member.ps mailman-member
%DVIPSParameters: dpi=600
%DVIPSSource:  TeX output 2008.04.21:1101
%%BeginProcSet: tex.pro 0 0
%!
/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/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]{Ci}imagemask
restore}B/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 0 0
% File 8r.enc  TeX Base 1 Encoding  Revision 2.0  2002-10-30
%
% @@psencodingfile@{
%   author    = "S. Rahtz, P. MacKay, Alan Jeffrey, B. Horn, K. Berry,
%                W. Schmidt, P. Lehman",
%   version   = "2.0",
%   date      = "30 October 2002",
%   filename  = "8r.enc",
%   email     = "tex-fonts@@tug.org",
%   docstring = "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"
% @}
% 
% The 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, Windows ANSI including the euro symbol,
% MacRoman, and some extra characters from Lucida.
% 
% 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.
% These are /dotlessj /ff /ffi /ffl.
% 
% (4) hyphen appears twice for compatibility with both ASCII and Windows.
%
% (5) /Euro was assigned to 128, as in Windows ANSI
%
% (6) Missing characters from MacRoman encoding incorporated as follows:
%
%     PostScript      MacRoman        TeXBase1
%     --------------  --------------  --------------
%     /notequal       173             0x16
%     /infinity       176             0x17
%     /lessequal      178             0x18
%     /greaterequal   179             0x19
%     /partialdiff    182             0x1A
%     /summation      183             0x1B
%     /product        184             0x1C
%     /pi             185             0x1D
%     /integral       186             0x81
%     /Omega          189             0x8D
%     /radical        195             0x8E
%     /approxequal    197             0x8F
%     /Delta          198             0x9D
%     /lozenge        215             0x9E
%
/TeXBase1Encoding [
% 0x00
 /.notdef /dotaccent /fi /fl
 /fraction /hungarumlaut /Lslash /lslash
 /ogonek /ring /.notdef /breve
 /minus /.notdef /Zcaron /zcaron
% 0x10
 /caron /dotlessi /dotlessj /ff
 /ffi /ffl /notequal /infinity
 /lessequal /greaterequal /partialdiff /summation
 /product /pi /grave /quotesingle
% 0x20
 /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
% 0x80
 /Euro /integral /quotesinglbase /florin
 /quotedblbase /ellipsis /dagger /daggerdbl
 /circumflex /perthousand /Scaron /guilsinglleft
 /OE /Omega /radical /approxequal
% 0x90
 /.notdef /.notdef /.notdef /quotedblleft
 /quotedblright /bullet /endash /emdash
 /tilde /trademark /scaron /guilsinglright
 /oe /Delta /lozenge /Ydieresis
% 0xA0
 /.notdef /exclamdown /cent /sterling
 /currency /yen /brokenbar /section
 /dieresis /copyright /ordfeminine /guillemotleft
 /logicalnot /hyphen /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: texps.pro 0 0
%!
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 60 /less put
dup 62 /greater put
readonly def
/FontBBox{-32 -250 1048 750}readonly 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 15 /bullet put
dup 110 /backslash put
readonly def
/FontBBox{-29 -960 1116 775}readonly 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 39139632 55387786 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[{}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[{}2 83.022
/CMSY10 rf /Ff 134[42 42 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 60 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}51
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 25[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}84
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)3413 1197 y Fk(April)20 b(21,)g(2008)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(11)0
5201 y Fh(8)83 b(Digests)3438 b(12)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(12)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(13)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(15)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(15)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(15)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(16)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(\224send)e(email)h
(to)g(this)h(address\224)e(or)h(\224visit)g(this)h(web)f(page\224)f(or)
g(\224\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(Proofreading)17 b(thanks)j(go)g(to)g(Mar)o
(garet)e(McCarthy)h(and)h(Jason)g(W)-7 b(alton.)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)c(lists)21
b(are)f(are)f(used)h(so)g(that)f(one)g(person)g(or)g(group)f(can)h
(send)h(announcements)c(to)k(a)g(group)e(of)h(people,)g(much)f(lik)o(e)
0 978 y(a)24 b(magazine)e(publisher')-5 b(s)22 b(mailing)h(list)i(is)f
(used)f(to)h(send)f(out)g(magazines.)34 b(F)o(or)23 b(e)o(xample,)g(a)h
(band)e(may)h(use)h(a)g(mailing)f(list)h(to)g(let)0 1078
y(their)c(f)o(an)g(base)g(kno)n(w)f(about)h(their)f(upcoming)f
(concerts.)0 1225 y(A)k(discussion)f(list)h(is)h(used)e(to)h(allo)n(w)f
(a)h(group)e(of)h(people)f(to)i(discuss)g(topics)f(amongst)f(themselv)o
(es,)h(with)h(e)n(v)o(eryone)d(able)i(to)h(send)0 1324
y(mail)16 b(to)g(the)g(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.)22 b(This)16
b(discussion)g(may)f(also)h(be)g(moderated,)f(so)h(only)g(selected)0
1424 y(posts)i(are)g(sent)h(on)e(to)h(the)g(group)f(as)h(a)h(whole,)e
(or)h(only)f(certain)h(people)f(are)h(allo)n(wed)f(to)h(send)g(to)g
(the)g(group.)k(F)o(or)c(e)o(xample,)f(a)h(group)0 1524
y(of)i(model)f(plane)h(enthusiasts)g(might)f(use)i(a)f(mailing)g(list)h
(to)g(share)f(tips)g(about)f(model)h(construction)e(and)i(\003ying.)0
1670 y(Some)g(common)e(terms:)125 1881 y Fe(\017)41 b
Fk(A)20 b(\224post\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(\224members\224)e(or)h(\224subscribers.)-6 b(\224)125
2210 y Fe(\017)41 b Fk(\224List)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)c(the)h(softw)o(are)f(which)g(runs)h(the)g(lists)h(is)
g(called)e(the)h(\224site)h(administrator)-5 b(.)f(\224)24
b(Often)i(the)f(site)i(administrator)d(also)208 2937
y(administrates)19 b(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)17 b(web)h(interf)o(ace)f(of)h(Mailman)f(is)i(its)f
(selling)g(point)f(for)g(man)o(y)g(administrators,)g(since)h(it)g(mak)o
(es)g(it)g(much)f(easier)h(for)f(subscribers)0 3016 y(and)j
(administrators)e(to)j(see)g(which)e(options)g(are)i(a)n(v)n(ailable,)e
(and)h(what)g(these)g(options)f(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(\224Unsubscribe)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/pr)q(iv)n(ate)o(/LI)o(STNAME)38 b Fk(if)44
b(the)g(list)h(is)f(pri)n(v)n(ately)f(archi)n(v)o(es.)94
b(\(F)o(or)43 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 408 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 508 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 633 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
733 y(a)n(v)n(ailable.)307 859 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 958 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
1240 y Fg(3.2)100 b(The)28 b(email)h(interf)m(ace)0 1443
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
1542 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 1642 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 1854
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 2013 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 2112 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
2212 y(subscribe@e)o(xample.com)16 b(is)21 b(an)f(alias)h(for)f(the)g
(-join)g(address.)125 2371 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
2471 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 2570 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 2729 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)15 b(is)i(the)e(address)208 2829 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
2988 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 3087 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
3187 y(commands)18 b(is)j(pro)o(vided)d(in)i(Appendix)e(A.)125
3346 y Fe(\017)41 b Fd(m)o(ylist-bounces@e)n(xample)o(.com)22
b Fk(\226)k(This)g(address)g(recei)n(v)o(es)f(bounces)f(from)h(members)
g(whose)h(addresses)f(ha)n(v)o(e)h(become)208 3445 y(either)f
(temporarily)f(or)h(permanently)e(inacti)n(v)o(e.)41
b(The)25 b(-bounces)f(address)h(is)i(also)f(a)g(mail)g(robot)f(that)h
(processes)f(bounces)208 3545 y(and)e(automatically)g(disables)h(or)g
(remo)o(v)o(es)f(members)g(as)i(con\002gured)d(in)i(the)g(bounce)f
(processing)g(settings.)37 b(An)o(y)23 b(bounce)208 3645
y(messages)i(that)g(are)g(either)g(unrecognized,)d(or)j(do)g(not)f
(seem)i(to)f(contain)f(member)g(addresses,)h(are)g(forw)o(arded)e(to)i
(the)g(list)208 3744 y(administrators.)125 3903 y Fe(\017)41
b Fd(m)o(ylist-con\002r)r(m@e)n(xample)o(.com)16 b Fk(\226)k(This)f
(address)f(is)i(another)e(email)h(robot,)f(which)g(processes)h
(con\002rmation)e(messages)i(for)208 4003 y(subscription)f(and)i
(unsubscription)e(requests.)0 4215 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 4314 y(with)i(older)g(v)o(ersions)f(of)h(Mailman.)0
4461 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 4608
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 4708 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(\224)p Fc(end)r
Fk(\224)h(\(without)0 4807 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
4907 y(after)c(that)g(point.)0 5054 y(The)c(most)h(important)e(command)
g(is)i(probably)e(the)h(\224)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
5154 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 5300 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 5400 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(\224Subscribing)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
3368 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:)24
b Fk(Do)c(NO)m(T)h(use)f(a)h(v)n(aluable)d(passw)o(ord,)i(since)g(this)
h(passw)o(ord)e(may)h(be)g(mailed)g(to)g(you)g(in)g(plain)g(te)o(xt.)
307 3617 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 3717 y Fk(This)19
b(setting)f(does)g(not)g(af)n(fect)f(posts)i(to)f(the)g(list,)i(only)d
(pre-prepared)e(Mailman)j(te)o(xts)g(such)g(as)h(your)e(member)g
(options)390 3817 y(page.)104 3983 y(3.)41 b(Press)21
b(the)f(subscribe)f(b)n(utton.)24 b(A)d(ne)n(w)f(page)f(should)g
(appear)h(telling)f(you)h(that)g(your)f(request)g(has)i(been)e(sent.)0
4196 y(Using)h(the)g(email)h(interf)o(ace:)104 4409 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 4575 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 4675 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 4888 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 4988
y(depending)18 b(upon)g(the)j(settings)f(for)g(that)g(list.)125
5201 y 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
5300 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 5400 y(message)f(to)g
(con\002rm)f(your)g(wish)h(to)h(be)f(subscribed.)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(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(limited)g(list.)125 249 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 462 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
562 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 662 y(sa)n(v)o(e)f(it)h(for)f(later)g
(reference.)0 808 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 908
y(mands.)0 1193 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 1396 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
1496 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 1595 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 1695 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 1842 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 1989 y(Using)h(the)g(web)g(interf)o(ace:)104
2202 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 2301
y Fd(http://WEBSER)l(VER/mailman/li)o(stin)o(f)n(o/)o(LIS)o(TNAME)-6
b Fk(\))104 2467 y(2.)41 b(Look)19 b(for)g(the)h(section)g(mark)o(ed)f
(\224LISTN)m(AME)h(subscribers\224)f(\(usually)g(found)f(near)i(the)g
(bottom)f(of)h(the)g(page\).)104 2634 y(3.)41 b(There)17
b(should)g(be)i(a)g(b)n(utton)e(mark)o(ed)g(\224Unsubscribe)g(or)h
(Edit)h(Options.)-6 b(\224)17 b(Enter)h(your)f(email)i(address)f(in)g
(the)g(box)g(beside)g(this)208 2733 y(b)n(utton)h(and)g(press)i(the)f
(b)n(utton.)104 2899 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(\224Unsubscribe\224)e(b)n
(utton.)24 b(Press)19 b(it)h(to)f(unsubscribe)e(and)h(follo)n(w)h(the)
208 2999 y(instructions)g(gi)n(v)o(en.)0 3212 y(Using)h(the)g(email)h
(interf)o(ace:)104 3425 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 3591 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
3691 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
3904 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 4004
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 4104 y(unsubscribing)18
b(you)h(without)g(your)g(permission.)24 b(In)c(addition,)f(a)h
(moderator)e(may)i(need)g(to)g(appro)o(v)o(e)e(your)g(unsubscription.)0
4250 y(If)k(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 4350 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
4450 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 4549
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
4649 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 4796 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 4895
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.)0 5042 y(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 5142 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
5242 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 5341 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.)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 86 a Fl(6)120 b(P)-5 b(ass)l(w)o(ords)0
319 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
419 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 518 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 618 y(change)f(your)g(settings.)0 765 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 1047 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 1250 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 1350 y(get)i(a)h(reminder)d(through)g(the)j(web)f
(interf)o(ace:)104 1564 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
1663 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 1823 y(2.)41
b(Look)26 b(for)h(the)g(section)h(mark)o(ed)e(\224LISTN)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 1923 y(page\).)104 2083
y(3.)41 b(There)17 b(should)g(be)i(a)g(b)n(utton)e(mark)o(ed)g
(\224Unsubscribe)g(or)h(Edit)h(Options.)-6 b(\224)17
b(Enter)h(your)f(email)i(address)f(in)g(the)g(box)g(beside)g(this)208
2182 y(b)n(utton)h(and)g(press)i(the)f(b)n(utton.)104
2342 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(\224P)o(assw)o(ord)g(Reminder\224)f
(section.)34 b(Press)25 b(the)e(\224Remind\224)f(b)n(utton)208
2442 y(to)e(ha)n(v)o(e)f(your)g(passw)o(ord)h(emailed)g(to)g(you.)0
2656 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 2756 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
2855 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 2955 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 3054 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 3201 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 3402
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 3532 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
3631 y(about)e(sending)g(mail)h(commands.\))208 3761
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 3861 y(command)18 b Fc(passwor)m(d)i(addr)m(ess=)p
Fb(<)p Fc(ADDRESS)p Fb(>)p Fk(.)0 4143 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 4346 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 4493 y(From)h(the)g(web)g(interf)o(ace:)
104 4693 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 4853 y(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
4953 y(appropriate)17 b(box)o(es,)i(then)h(press)g(the)h(b)n(utton)e
(mark)o(ed)g(\224Change)g(My)h(P)o(assw)o(ord.)-6 b(\224)0
5154 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 5253 y(domain.)g(See)c(Section)g
(10.1)f(for)h(information)d(about)j(changing)e(settings)i(globally)-5
b(.)0 5400 y(From)20 b(the)g(email)g(interf)o(ace:)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(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 183 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
311 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 411 y(about)e(sending)g(mail)h(commands.\))208
540 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 639 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 768 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
868 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
967 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 1249 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 1451 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 1551 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
1698 y(Using)20 b(the)g(web)g(interf)o(ace:)104 1895
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 2053 y(2.)41 b(Look)19 b(for)g(the)h(section)g(mark)o(ed)f
(\224Get)i(passw)o(ord)e(reminder)g(email)h(for)f(this)i(list?\224)g
(and)f(change)f(the)h(v)n(alue)f(accordingly)-5 b(.)0
2249 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 2349 y(domain.)g(See)c(Section)g
(10.1)f(for)h(information)d(about)j(changing)e(settings)i(globally)-5
b(.)0 2496 y(Using)20 b(the)g(email)h(interf)o(ace:)104
2693 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
2821 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 2921 y(about)e(sending)g(mail)h
(commands.\))104 3079 y(2.)41 b(Set)20 b(it)h(to)g(\224on\224)e(to)i
(recei)n(v)o(e)e(reminders,)f(and)i(\224of)n(f\224)f(to)h(stop)g(recei)
n(ving)f(reminders.)0 3403 y Fl(7)120 b(Changing)36 b(mail)c(deliv)m
(er)t(y)0 3652 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 3855 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
3955 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 4054
y(settings.)0 4201 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
4301 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
4400 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 4500 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.)0 4600 y(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 4699 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 4799 y(log)d(in)g(to)h(the)f(archi)n(v)o(es.)0
4946 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 5143 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 5300 y(2.)41 b(Go)21 b(do)n(wn)f(to)i(the)f
(section)g(mark)o(ed)g(\224Mail)g(deli)n(v)o(ery\224)f(and)h(select)h
(\224Disabled\224)e(to)i(stop)f(recei)n(ving)f(mail,)i(and)f
(\224Enabled\224)e(to)208 5400 y(start)h(recei)n(ving)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(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(disable/enable)f(mail)h(deli)n(v)o(ery)f(using)h(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(delivery)f(of)o(f)32 b Fk(or)20 b Fc(set)h(delivery)f(on)p
Fk(.)208 676 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 775 y(about)e(sending)g(mail)h
(commands.\))104 941 y(2.)41 b(Set)20 b(it)h(to)g(\224of)n(f\224)e(to)h
(stop)g(recei)n(ving)f(posts,)h(and)g(\224on\224)f(to)i(start)f(recei)n
(ving)f(them)h(again.)0 1226 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 1429 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
1529 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(\224group)d(reply\224)h(function)g(to)h(send)g(mail)h
(to)f(both)f(the)i(list)g(and)f(some)0 1628 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 1728 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 1828
y(cop)o(y)f(to)i(you.)0 1974 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 2188
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 2354 y(2.)41 b(Scroll)19 b(do)n(wn)g(to)h(the)g(bottom)f
(of)h(the)g(page)f(to)h(the)g(section)g(mark)o(ed)e(\224A)-6
b(v)n(oid)20 b(duplicate)e(copies)i(of)g(messages?\224)f(and)h(change)
208 2453 y(the)g(v)n(alue)f(accordingly)-5 b(.)0 2667
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 2766 y(domain.)g(See)c(Section)g(10.1)f
(for)h(information)d(about)j(changing)e(settings)i(globally)-5
b(.)0 2913 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 3127 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 3259 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 3359 y(about)e(sending)g
(mail)h(commands.\))104 3525 y(2.)41 b(Set)30 b(it)g(to)g(\224on\224)f
(to)h(recei)n(v)o(e)f(list)i(copies)e(of)h(messages)g(already)e(sent)i
(to)g(you,)h(set)g(it)f(to)g(\224of)n(f\224)f(to)h(a)n(v)n(oid)f(recei)
n(ving)f(these)208 3625 y(duplicates.)0 3910 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
4112 y Fk(T)-7 b(o)20 b(change)f(your)g(subscription)g(address,)104
4326 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 4492 y(2.)41 b(In)19 b(the)i(section)f(mark)o(ed)f
(\224Changing)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 4658
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
(\224Change)f(globally\224)f(box.)208 4757 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 4857 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 5070 y(There)19 b(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 5170
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.\))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 0 83 a 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 286 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
386 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 485
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 632 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 779 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 926
y(T)-7 b(o)20 b(set)h(this)g(using)f(the)g(web)g(interf)o(ace:)104
1137 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 1302 y(2.)41 b(Look)19 b(for)h(the)g(section)h(mark)o(ed)
e(\224Recei)n(v)o(e)h(your)f(o)n(wn)h(posts)h(to)g(the)f(list?\224)i
(Set)f(it)g(to)g(\224Y)-8 b(es\224)20 b(to)h(recei)n(v)o(e)e(copies)i
(of)f(your)f(o)n(wn)208 1402 y(posts,)h(and)f(\224No\224)h(to)h(a)n(v)n
(oid)f(recei)n(ving)e(them.)0 1613 y(T)-7 b(o)20 b(set)h(this)g(using)f
(the)g(email)g(interf)o(ace:)104 1824 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 1957 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 2056 y(about)e(sending)g
(mail)h(commands.\))104 2221 y(2.)41 b(Set)20 b(it)h(to)g(\224on\224)e
(to)i(recei)n(v)o(e)e(copies)h(of)f(your)g(o)n(wn)h(posts,)g(and)g
(\224of)n(f\224)f(to)h(a)n(v)n(oid)g(recei)n(ving)f(them.)0
2506 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 2622 y(option\))0 2825 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 2925 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 3024 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
3171 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 3271 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 3418 y(T)-7
b(o)20 b(set)h(this)g(using)f(the)g(web)g(interf)o(ace:)104
3629 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 3794 y(2.)41 b(Look)22 b(for)g(the)h(section)g(mark)o(ed)
f(\224Recei)n(v)o(e)h(ackno)n(wledgement)d(mail)j(when)g(you)f(send)h
(mail)h(to)f(the)g(list?\224)h(Set)g(it)g(to)f(\224Y)-8
b(es\224)208 3894 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
(\224No\224)h(to)g(a)n(v)n(oid)f(recei)n(ving)g(such)g(an)h(ackno)n
(wl-)208 3993 y(edgement.)0 4205 y(T)-7 b(o)20 b(set)h(this)g(using)f
(the)g(email)g(interf)o(ace:)104 4416 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(ac)n(k)f(on)g Fk(or)g Fc(set)h(ac)n(k)f(of)o(f)12
b Fk(.)208 4548 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 4648 y(about)e(sending)g
(mail)h(commands.\))104 4813 y(2.)41 b(Set)29 b(it)h(to)g(\224on\224)e
(if)i(you)e(wish)i(to)f(recei)n(v)o(e)g(mail)g(letting)g(you)f(kno)n(w)
h(your)f(post)h(has)g(been)g(recei)n(v)o(ed,)g(and)g(\224of)n(f\224)f
(to)i(a)n(v)n(oid)208 4913 y(recei)n(ving)18 b(such)i(an)g(ackno)n
(wledgement.)0 5197 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 5400 y Fk(There)19 b(are)h(a)h(fe)n(w)f(common)f
(reasons)g(for)h(this:)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 125 83 a 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 212 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 312 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 441 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 541 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
640 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 740 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 899 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
1028 y(If)28 b(your)f(mail)h(pro)o(vider)e(\224bounces\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 1128 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 1227 y(addresses)29 b(which)g(no)g(longer)g(e)o(xist)h
(\(for)e(e)o(xample,)j(the)f(subscriber)e(has)i(found)e(a)i(ne)n(w)g
(internet)e(service)i(pro)o(vider)d(and)208 1327 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 1427 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
1526 y(is)i(e)o(xperiencing)c(dif)n(\002culties\).)208
1656 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
1755 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 1855 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
1954 y(message)20 b(to)g(mak)o(e)g(sure)g(your)f(subscribed)g(address)g
(is)i(w)o(orking.)208 2084 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
2183 y(tion)30 b(3.1)g(for)h(more)f(details)h(on)g(ho)n(w)f(to)h(do)g
(this\))g(and)f(look)g(at)i(your)d(options.)56 b(There)31
b(should)e(be)i(one)g(mark)o(ed)e(\224Mail)208 2283 y(Deli)n(v)o
(ery\224)19 b(\226)i(if)h(it)g(is)g(set)g(to)f(\224Disabled,)-6
b(\224)20 b(set)i(it)g(to)f(\224Enabled\224)f(to)h(start)h(recei)n
(ving)d(mail)j(again.)k(\(F)o(or)21 b(more)f(instructions)g(on)208
2383 y(disabling)f(or)h(enabling)e(mail)j(deli)n(v)o(ery)-5
b(,)18 b(see)i(Section)g(7.1.\))208 2512 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 2611 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 2770 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
2900 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 2999 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 3099 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 3228 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 3328 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 3427 y(engine)19 b(to)h(\002nd)g(those)g(appropriate)e(for)
h(you.\))125 3586 y Fe(\017)41 b Fk(The)19 b(Mailman)h(installation)g
(on)g(the)g(list)h(serv)o(er)e(is)i(not)f(functioning)e(or)i(not)g
(functioning)d(properly)-5 b(.)208 3715 y(T)e(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 3815 y(request@DOMAIN)27 b Fk(with)i(the)g(command)e
(\224)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)208
3915 y(after)h(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 4014 y(administrator\(s\).)0
4338 y Fl(8)120 b(Digests)0 4588 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
4704 y(option\))0 4907 y Fk(Groups)29 b(of)h(posts)g(are)g(called)g
(\224digests\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
5007 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 5106
y(or)g(less)h(frequent)e(depending)e(upon)i(the)h(list.)0
5253 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
5400 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,)p 0 5549 3901 4 v 0 5649 a
Ff(12)3402 b(8)83 b(Digests)p eop end
%%Page: 13 13
TeXDict begin 13 12 bop 104 83 a Fk(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 244 y(2.)41
b(Look)19 b(for)g(the)h(section)g(mark)o(ed)f(\224Set)i(Digest)f(Mode.)
-6 b(\224)208 374 y(Set)20 b(it)h(to)g(\224On\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(\224Of)n(f\224)g(to)g(recei)n(v)o(e)f(posts)i
(separately)-5 b(.)0 577 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 780
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
880 y(g)o(est)20 b(of)o(f)12 b Fk(.)208 1010 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 1110 y(about)e(sending)g(mail)h(commands.\))104
1271 y(2.)41 b(Set)31 b(it)g(to)f(\224of)n(f\224)f(if)i(you)e(wish)i
(to)f(recei)n(v)o(e)g(indi)n(vidual)e(posts)j(separately)-5
b(,)31 b(and)f(to)g(\224plain\224)g(or)g(\224mime\224)g(to)g(recei)n(v)
o(e)f(posts)208 1370 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 1653 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 1769 y(option\))0 1972 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
2072 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 2219 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
2366 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 2465 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 2612 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 2712 y(reading)h(the)h(MIME)g(ones.)0 2859
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
2958 y(on)k(recei)n(ving)e(mail)j(as)g(digests.\))0 3105
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 3308 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 3469 y(2.)41 b(Look)19
b(for)g(the)h(section)g(mark)o(ed)f(\224Get)i(MIME)e(or)h(Plain)h(T)-6
b(e)o(xt)20 b(Digests?.)-6 b(\224)208 3599 y(Set)20 b(it)h(to)g
(\224MIME\224)e(to)h(recei)n(v)o(e)g(digests)g(in)g(MIME)g(format,)f
(or)h(\224Plain)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.)0 3802 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
3902 y(domain.)g(See)c(Section)g(10.1)f(for)h(information)d(about)j
(changing)e(settings)i(globally)-5 b(.)0 4049 y(T)e(o)20
b(set)h(your)e(digest)h(type)g(using)g(the)g(email)g(interf)o(ace,)104
4252 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 4382 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
4482 y(about)e(sending)g(mail)h(commands.\))104 4643
y(2.)41 b(Set)27 b(it)h(to)g(\224plain\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(\224mime\224)f
(to)i(get)f(posts)h(b)n(undled)d(together)h(into)h(a)208
4742 y(MIME)19 b(digest.)0 5068 y Fl(9)120 b(Mailing)33
b(list)f(topics)0 5300 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 5400 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)p 0 5549 3901 4 v
0 5649 a Ff(8.2)83 b(What)24 b(are)f(MIME)h(and)g(Plain)g(T)-10
b(e)n(xt)22 b(Digests?)29 b(Ho)o(w)23 b(do)g(I)g(change)h(which)f(one)h
(I)f(get?)29 b(\(digest)23 b(option\))314 b(13)p eop
end
%%Page: 14 14
TeXDict begin 14 13 bop 0 83 a Fk(same)21 b(time.)k(\(e)o(g:)g(Netw)o
(orking)19 b(for)h(be)o(ginners,)e(C)j(programming,)c(L)2029
66 y Fa(A)2059 83 y Fk(T)2096 102 y(E)2136 83 y(X)k(document)d(mark)i
(up.\))k(Each)c(of)h(the)f(courses)g(being)f(run)0 183
y(is)i(a)g(separate)e(topic)h(on)g(the)g(list)i(so)e(that)g(people)f
(can)h(choose)g(only)f(to)h(recei)n(v)o(e)g(the)g(course)f(the)o(y)h(w)
o(ant)g(to)g(tak)o(e.)0 330 y(These)31 b(topics)f(must)h(be)g
(con\002gured)d(by)i(the)h(list)h(administrator)m(,)f(b)n(ut)f(it)i(is)
g(the)e(responsibility)g(of)g(each)g(poster)h(to)f(mak)o(e)h(sure)0
429 y(that)d(their)f(post)h(is)h(put)e(with)h(the)g(correct)f(topic.)47
b(Usually)-5 b(,)29 b(this)g(means)e(adding)f(a)j(tag)e(of)h(some)g
(type)f(to)h(the)g(subject)f(line)h(\(e)o(g:)0 529 y([Netw)o(orking])e
(What)j(type)g(of)f(cables)h(do)f(I)h(need?\))50 b(or)28
b(making)g(sure)g(the)h Fd(K)m(e)o(yw)o(ords:)42 b Fk(line)28
b(has)h(the)g(right)f(information.)48 b(\(By)0 628 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 728 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 1013 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 1216 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
1429 y Fe(\017)41 b Fk(a)20 b(topic)g(name)125 1595 y
Fe(\017)41 b Fk(a)20 b(re)o(gular)f(e)o(xpression)f(\(re)o(ge)o(xp\))
125 1761 y Fe(\017)41 b Fk(a)20 b(description)0 1974
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
2074 y(to)f(do)g(this.\))25 b(and)20 b(clicking)f(on)h(the)g
(\224details\224)g(link)g(for)g(an)o(y)f(topic)h(that)g(interests)h
(you.)0 2221 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 2321 y(e)n(xpr)m(ession)27
b Fk(for)g(that)h(topic.)46 b(Re)o(gular)26 b(e)o(xpressions)h(can)g
(actually)g(be)g(f)o(airly)g(comple)o(x,)g(so)h(you)e(may)h(w)o(ant)h
(to)f(just)h(ask)g(the)f(list)0 2420 y(administrator)19
b(if)h(you)f(don')o(t)g(kno)n(w)g(ho)n(w)h(to)g(mak)o(e)g(heads)f(or)h
(tails)i(of)d(the)i(e)o(xpression)d(gi)n(v)o(en.)0 2567
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 2667 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 2766 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 2866 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 2866
23 4 v 21 w(Side/Administr)o(ation/RegExp/)-7 b Fk(\))0
3013 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:)567 3239 y
Fh(Regular)g(expr)o(ession)p 1294 3269 4 100 v 99 w(Matching)h(lines)p
517 3272 2867 4 v 567 3342 a Fk(zuf)n(f)p 1294 3372 4
100 v 645 w(K)n(e)o(yw)o(ords:)k(zuf)n(f)567 3442 y(zuf)n(f)p
1294 3472 V 645 w(K)n(e)o(yw)o(ords:)g(ZUFF)567 3541
y(zuf)n(f)p 1294 3571 V 645 w(K)n(e)o(yw)o(ords:)g(Zuf)n(f)567
3641 y(zuf)n(f)p 1294 3671 V 645 w(K)n(e)o(yw)o(ords:)g(amaryllis,)c
(zuf)n(f,)f(applesauce)567 3741 y(zuf)n(f)p 1294 3770
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 3840 y(zuf)n(f)p
1294 3870 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 3940 y(zuf)n(f)p 1294
3970 V 645 w(Subject:)25 b(What)c(is)g(zuf)n(f?)p 517
3973 2867 4 v 567 4043 a Fe(n)p Fk([zuf)n(f)p Fe(n)p
Fk(])p 1294 4073 4 100 v 505 w(K)n(e)o(yw)o(ords:)j([zuf)n(f])567
4142 y Fe(n)p Fk([zuf)n(f)p Fe(n)p Fk(])p 1294 4172 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 4242 y Fe(n)p Fk([zuf)n(f)p Fe(n)p Fk(])p
1294 4272 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
4467 y(A)g(fe)n(w)f(notes:)125 4680 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
4780 y(tion.)125 4946 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 5046 y(must)i(be)h(\224escaped\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 5145 y(\(Others)23 b(include)h(\224.)-6
b(\224,)25 b(\224?\224,)h(and)e(\224*\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 5245 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 5345 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.)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 0 83 a 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 286 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
386 y(selecting)20 b(the)g(topics)g(you)f(w)o(ant)i(to)f(recei)n(v)o
(e.)0 532 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 721 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 871 y(2.)41 b(Look)19
b(for)g(the)h(section)g(mark)o(ed)f(\224Which)h(topic)g(cate)o(gories)f
(w)o(ould)g(you)h(lik)o(e)g(to)h(subscribe)e(to?\224)208
995 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 1095 y(recei)n(v)o(e)19
b(all)h(posts)h(sent)f(to)h(the)f(list.)0 1284 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 1383 y(set.)0 1661 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 1864 y Fk(If)16 b(you)g(wish)h(to)g(get)f
(all)h(messages)g(sent)g(to)g(the)f(list,)i(mak)o(e)e(sure)h(you)f(are)
g(not)g(subscribed)f(to)i(an)o(y)f(speci\002c)h(topic.)23
b(\(See)17 b(Section)f(9.2.\))0 2011 y(If)i(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 2110 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 2257
y(T)-7 b(o)20 b(change)f(this)i(setting,)104 2438 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 2587 y(2.)41 b(Look)19 b(for)g(the)h(section)g(mark)o(ed)
f(\224Do)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 2712
y(If)25 b(you)f(wish)i(to)g(recei)n(v)o(e)e(messages)h(with)h(no)f
(topic)g(set,)i(select)f(\224Y)-8 b(es.)i(\224)25 b(If)h(you)e(do)h
(not)g(wish)h(to)f(recei)n(v)o(e)g(such)g(messages,)208
2811 y(choose)19 b(\224No.)-6 b(\224)0 2992 y(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 3312 y Fl(10)120 b(Setting)35
b(other)g(options)0 3561 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
3764 y Fk(F)o(or)f(some)h(of)f(the)g(options)g(gi)n(v)o(en)f(in)i(your)
e(member)g(options)h(page,)h(there)f(is)i(a)f(tick-box)e(which)h(says)h
(\224Change)e(Globally\224)h(or)0 3864 y(\224Set)e(Globally)-5
b(.)f(\224)23 b(This)h(means)g(that)h(if)g(you)e(change)g(this)i
(option,)f(you)f(can)h(also)h(ha)n(v)o(e)f(the)g(change)f(made)h(for)g
(all)h(your)e(other)g(list)0 3963 y(subscriptions)18
b(with)i(the)g(same)f(address)g(to)h(lists)h(on)e(the)h(same)f(domain.)
24 b(This)19 b(can)h(be)f(handy)f(if,)i(for)f(e)o(xample,)f(you)h(w)o
(ant)g(to)h(mak)o(e)0 4063 y(sure)f(all)g(your)f(passw)o(ords)h(are)g
(the)g(same,)g(or)g(you)f(are)h(going)f(on)g(v)n(acation)g(and)g(w)o
(ant)i(to)f(turn)f(of)n(f)g(mail)h(deli)n(v)o(ery)f(from)g(all)h(the)g
(lists.)0 4341 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 4543 y Fk(T)-7
b(o)20 b(change)f(your)g(subscription)g(name,)104 4724
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 4873 y(2.)41 b(In)31 b(the)h(section)g(mark)o(ed)f
(\224Changing)f(your)h(LISTN)m(AME)g(membership)f(information,)-6
b(\224)29 b(enter)j(your)e(ne)n(w)i(name)f(in)i(the)208
4973 y(appropriate)17 b(box.)0 5154 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
5253 y(domain.)g(See)c(Section)g(10.1)f(for)h(information)d(about)j
(changing)e(settings)i(globally)-5 b(.)0 5400 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.)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 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 286
y Fk(Mailman)116 b(is)h(a)n(v)n(ailable)f(with)h(man)o(y)e(dif)n
(ferent)g(languages.)312 b(\(F)o(or)116 b(a)h(complete)e(listing)i(see)
0 386 y Fd(http://mailman.sourcef)n(orge)n(.n)o(et/i)o(18)o(n.h)o(tml)
-6 b Fk(.\))87 b(This)41 b(means)f(that,)46 b(if)41 b(your)e(list)j
(has)f(other)f(languages)g(enabled,)k(you)c(may)0 485
y(be)20 b(able)g(to)h(ha)n(v)o(e)e(the)h(web)g(interf)o(ace,)g(etc.)25
b(in)20 b(a)h(language)d(of)i(your)f(choice.)0 632 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 732 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 831 y(uses.)0 978 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 1078 y(than)h(one)f(language.)0
1225 y(T)-7 b(o)20 b(change)f(your)g(preferred)f(language)h(in)h
(Mailman,)104 1438 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 1604 y(2.)41 b(Go)21
b(to)h(the)f(section)g(mark)o(ed)f(\224What)i(language)e(do)h(you)f
(prefer?\224)g(and)h(choose)f(the)i(appropriate)d(language)g(from)i
(the)g(drop-)208 1704 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
1917 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 2017 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 2116 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 2263 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
2363 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 2462 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(.)31 b(\(i18n)21 b(is)i(a)f(common)e(short-hand)g(for)h
(\224internationalization\224)e(because)0 2562 y(the)k(w)o(ord)g
(starts)h(with)g(an)f(i,)i(ends)e(with)g(an)g(n,)h(and)f(has)h(18)f
(letters)h(in)f(between.)34 b(If)23 b(you)f(mumble)g(a)i(bit,)g(i18n)f
(e)n(v)o(en)f(sounds)h(a)g(bit)0 2662 y(lik)o(e)d
(\224internationalization.)-6 b(\224\))0 2946 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
3149 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
3249 y(concealed.)0 3396 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
3495 y(obscured)c(to)i(hinder)f(spam)h(harv)o(esters,)g(b)n(ut)g(if)g
(you)f(feel)h(this)h(is)g(insuf)n(\002cient)e(it')-5
b(s)28 b(easy)f(enough)e(to)i(remo)o(v)o(e)e(address)i(from)f(the)0
3595 y(subscriber)20 b(list)j(gi)n(v)o(en)d(in)h(the)h(information)d
(pages)h(or)i(by)f(email)g(request.)28 b(\(Note)21 b(that)g(this)h
(does)f(not)g(conceal)g(your)f(address)h(from)0 3695
y(the)d(list)i(administrators.\))i(Y)-9 b(ou)18 b(may)g(wish)h(to)f
(see)h(Section)f(11.2)f(for)h(more)g(information)d(on)j(what)h(Mailman)
e(can)i(do)e(to)i(help)f(a)n(v)n(oid)0 3794 y(spam.)0
3941 y(T)-7 b(o)20 b(change)f(this)i(setting)f(using)g(the)g(web)g
(interf)o(ace:)104 4155 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 4321 y(2.)41 b(Go)25
b(to)g(the)g(section)g(mark)o(ed)f(\224Conceal)h(yourself)e(from)h
(subscriber)g(list?\224)i(and)f(choose)f(\224Y)-8 b(es\224)25
b(to)h(hide)e(your)g(name)h(from)208 4420 y(the)20 b(list,)h(or)f
(\224No\224)g(to)g(allo)n(w)g(your)f(name)h(to)g(appear)f(on)h(the)g
(list.)0 4633 y(T)-7 b(o)20 b(change)f(this)i(setting)f(using)g(the)g
(email)g(interf)o(ace:)104 4847 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 4980 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 5079 y(about)e(sending)g
(mail)h(commands.\))104 5245 y(2.)41 b(Set)20 b(it)h(to)g(\224on\224)e
(to)i(conceal)e(your)g(email)h(address)g(from)f(the)h(membership)e
(list,)j(or)f(\224of)n(f\224)f(to)i(stop)f(concealing)e(your)h
(address.)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 88 a Fl(11)120 b(Other)35 b(common)e
(questions)0 338 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 540 y Fk(If)22 b(the)h(list)h(has)e(archi)n(v)o
(es,)g(the)o(y)g(can)g(be)h(vie)n(wed)e(by)h(going)g(to)g(a)h(web)g
(page)f(address.)31 b(This)23 b(address)f(usually)g(link)o(ed)f(from)h
(the)g(list)0 640 y(information)16 b(page)h(and)h(can)g(be)g(found)f
(in)h(the)g Fd(List-Archiv)n(e:)23 b Fk(of)18 b(e)n(v)o(ery)f(list)j
(message)e(unless)g(your)f(list)i(administrator)e(has)h(disabled)0
740 y(these)j(headers.)27 b(\(Man)o(y)19 b(mail)j(programs)d(hide)h
(the)h Fd(List-Archiv)n(e:)26 b Fk(mail)21 b(header)m(,)e(so)j(you)e
(may)g(ha)n(v)o(e)h(to)g(tell)h(your)d(mail)j(program)c(to)0
839 y(allo)n(w)i(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)g(it.\))0 986 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 1086 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
1233 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 1516
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
1719 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
1819 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 1919 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 2018 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 2165 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 2265 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 2364 y(man)o(y)17 b(w)o(ays.)25 b(List)20
b(administrators)d(must)i(w)o(alk)f(a)i(\002ne)e(line)h(between)f
(protecting)f(subscribers)h(and)g(making)f(it)j(dif)n(\002cult)e(for)g
(people)0 2464 y(to)i(get)h(in)f(touch.)125 2687 y Fe(\017)41
b Fk(Subscriber)18 b(lists)307 2851 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 2950 y(vie)n(w)o(able)20 b(only)f(to)h(list)i
(administrators.)307 3081 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
3180 y(your)e(address.)307 3311 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 3410 y(tion.\))307 3540 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
3704 y Fe(\017)41 b Fk(List)20 b(archi)n(v)o(es)307 3867
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 3967 y(completely)19
b(una)n(v)n(ailable.)307 4097 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
4197 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 4296 y(le)n(v)o(els)c(of)g(obfuscation)e
(to)j(mak)o(e)e(addresses)h(less)i(readable.)307 4427
y Fh(\226)41 b Fk(If)21 b(you)e(wish)i(to)g(be)g(more)e(sure,)i(you)e
(can)i(set)g(the)g(mail)g(header)e Fd(X-no-archiv)n(e:)24
b Fk(and)c(Mailman)g(will)h(not)g(archi)n(v)o(e)e(your)390
4526 y(posts.)25 b Fh(W)-5 b(ar)o(ning:)23 b Fk(This)d(does)e(not)h
(stop)g(other)f(members)g(from)g(quoting)f(your)h(posts,)h(possibly)g
(e)n(v)o(en)f(including)f(your)390 4626 y(email)j(address.)125
4789 y Fe(\017)41 b Fk(Limited)19 b(posting)g(to)i(the)f(lists)307
4953 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 5053 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 5152 y(the)h(list.)307 5282 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 5382 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.)p 0 5549 3901 4 v 3808 5649 a
Ff(17)p eop end
%%Page: 18 18
TeXDict begin 18 17 bop 125 83 a Fe(\017)41 b Fk(Anon)o(ymous)17
b(lists)307 249 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 349 y(header)f(before)g
(the)h(message)g(is)h(sent)g(on.)307 482 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 581 y(desired.)0
811 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 911 y(tions)e(used)g(may)g(not)g(be)g(enough.)0
1238 y Fl(A)119 b(Email)32 b(commands)i(quic)n(k)f(ref)l(erence)208
1457 y Fk(con\002rm)19 b Fb(<)p Fk(CONFIRMA)-9 b(TION-STRING)p
Fb(>)390 1623 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 1723 y(mation)e(notice.)208
1889 y(end)390 2055 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 2221 y(help)390 2387 y(Recei)n(v)o(e)h(a)h(cop)o(y)e(of)h
(the)g(help)g(message.)208 2553 y(info)390 2719 y(Get)h(information)d
(about)h(this)i(mailing)e(list.)208 2885 y(lists)390
3051 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 3217 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 3383 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 3483 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
3649 y(set)i(...)390 3815 y(Set)g(or)f(vie)n(w)g(your)f(membership)f
(options.)390 3931 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 4031
y(also)21 b(gi)n(v)o(en)e(in)h(Appendix)e(B.)390 4147
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 4313 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 4479
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 4579 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 4678 y(passw)o(ord.)390 4794 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 4894 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 4994 y(around)g(the)h(email)g
(address,)f(and)h(no)g(quotes!\))208 5160 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(])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 390 83 a Fk(Unsubscribe)19 b(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
183 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 282 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
382 y(around)g(the)h(email)g(address,)f(and)h(no)g(quotes!\))208
543 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
705 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 804 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
904 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 1004 y(address,)20 b(and)f(no)h(quotes!\))0
1329 y Fl(B)119 b(Member)34 b(options)h(quic)n(k)d(ref)l(erence)208
1546 y Fk(set)21 b(help)390 1707 y(Sho)n(w)f(this)h(detailed)e(help.)
208 1868 y(set)i(sho)n(w)e([address=)p Fb(<)p Fk(ADDRESS)p
Fb(>)p Fk(])390 2030 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 2130
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 2229 y(and)20 b(no)g(quotes!\).)208
2391 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(])390
2552 y(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 2652 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 2751 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 2913 y(set)i(ack)f(on)208
3012 y(set)h(ack)f(of)n(f)390 3174 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 3274 y(message)d(to)h
(the)f(list.)208 3435 y(set)h(digest)f(plain)208 3535
y(set)h(digest)f(mime)208 3634 y(set)h(digest)f(of)n(f)390
3796 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 3895 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
3995 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 4156 y(set)21 b(deli)n(v)o(ery)d(on)208
4256 y(set)j(deli)n(v)o(ery)d(of)n(f)390 4417 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 4517 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 4617 y(from)h(v)n(acation!)208 4778 y(set)i(myposts)e(on)
208 4878 y(set)i(myposts)e(of)n(f)390 5039 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 5139 y(recei)n(ving)i
(digests.)208 5300 y(set)i(hide)e(on)208 5400 y(set)i(hide)e(of)n(f)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(Use)21 b(`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 249 y(set)j(duplicates)e(on)208
349 y(set)i(duplicates)e(of)n(f)390 515 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
614 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
714 y(recei)n(v)o(e.)208 880 y(set)g(reminders)d(on)208
980 y(set)j(reminders)d(of)n(f)390 1146 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