- Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathhmrc.html
1581 lines (1581 loc) · 68.2 KB
/
hmrc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<metaname="generator" content=
"HTML Tidy for HTML5 for Linux/x86 version 5.2.0">
<metahttp-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Hypermail - hmrc list configuration</title>
<linkrel="author" href="https://github.com/hypermail-project">
</head>
<bodybgcolor="#FFFFFF" text="#000000">
<h1align="center"><imgsrc="hypermail.png" width="60" align=
"middle" height="60" alt=""> Hypermail List
Configuration File</h1>
<hrwidth="400" noshade>
<p>The hypermail list configuration file is used to specify
<em>list specific</em> or <em>user specific</em> information to
hypermail. Comments are denoted by the '#' character at the
begining of the line. The file to use can be specified via the -c
command line argument. The default file is .hmrc in the user's home
directory.</p>
<p>Examples listed on this page are shown <i>in this style</i>. The
default value is shown unless otherwise indicated. <b>Off</b> is
equivalent to 0, and <b>On</b> is equivalent to 1 for options which
are either on or off.</p>
<ul>
<li><ahref="#allpages">Options affecting both messages and index
pages</a>
<ul>
<li><ahref="#locale">Locale</a>
<ul>
<li><ahref="#language">language</a> English, German, French,
etc.</li>
<li><ahref="#iso2022jp">iso2022jp</a> Japanese characters</li>
<li><ahref="#i18n">i18n</a> enable Internationalization (i18n)
features</li>
<li><ahref="#eurodate">eurodate</a> format</li>
<li><ahref="#dateformat">dateformat</a> strftime-style format
string</li>
<li><ahref="#isodate">isodate</a> standard YYYY-MM-DD HH:MM:SS
format</li>
<li><ahref="#gmtime">gmtime</a> GMT/UTC vs local time</li>
</ul>
</li>
<li><ahref="#headers">Headers</a>
<ul>
<li><ahref="#label">label</a> set the <title></li>
<li><ahref="#hmail">hmail</a> list submission address</li>
<li><ahref="#newmsg_command">newmsg_command</a> new list message
mailto</li>
<li><ahref="#replymsg_command">replymsg_command</a> reply
mailto</li>
<li><ahref="#inreplyto_command">inreplyto_command</a> resolver for
messages found outside the archive</li>
</ul>
</li>
<li><ahref="#misc_pages">Miscellaneous</a>
<ul>
<li><ahref="#stripsubject">stripsubject</a> text to be removed
from subject line</li>
<li><ahref="#mailcommand">mailcommand</a> controls most
mailto's</li>
<li><ahref="#mailto">mailto</a> for <link rev=made
href=mailto:</li>
<li><ahref="#domainaddr">domainaddr</a> to append to incomplete
addresses</li>
<li><ahref="#use_sender_date">use_sender_date</a> which date to
trust more</li>
<li><ahref="#fragment_prefix">fragment_prefix</a> how to prefix
each URI fragment</li>
<li><ahref=
"#email_address_obfuscation">email_address_obfuscation</a> simple
obfuscation of email addresses</li>
</ul>
</li>
</ul>
</li>
<li><ahref="#index">Index page options</a>
<ul>
<li><ahref="#index_avail">Index availability</a>
<ul>
<li><ahref="#folder_by_date">folder_by_date</a> split into subdirs
by date</li>
<li><ahref="#msgsperfolder">msgsperfolder</a> split into subdirs
of n messages</li>
<li><ahref="#monthly_index">monthly_index</a> create monthly index
files</li>
<li><ahref="#yearly_index">yearly_index</a> create yearly index
files</li>
<li><ahref="#defaultindex">defaultindex</a> what goes in
index.html</li>
<li><ahref="#default_top_index">default_top_index</a> what goes in
top directory index.html</li>
<li><ahref="#avoid_indices">avoid_indices</a> don't generate these
files</li>
<li><ahref="#avoid_top_indices">avoid_top_indices</a> don't
generate these files</li>
<li><ahref="#attachmentsindex">attachmentsindex</a> create these
files</li>
<li><ahref="#latest_folder">latest_folder</a> symlink to recent
subdir</li>
<li><ahref="#noindex_onindexes">noindex_onindexes</a> instruct
robots to not index hypermail generated indexes</li>
</ul>
</li>
<li><ahref="#index_body">Body style</a>
<ul>
<li><ahref="#indextable">indextable</a> style of message
lists</li>
<li><ahref="#reverse">reverse</a> sort order, date/thread
files</li>
<li><ahref="#reverse_folders">reverse_folders</a> sort order, list
of folders</li>
<li><ahref="#thrdlevels">thrdlevels</a> max indentation</li>
<li><ahref="#thread_file_depth">thread_file_depth</a> threads get
their own files</li>
<li><ahref="#icss_url">icss_url</a> stylesheet</li>
<li><ahref="#describe_folder">describe_folder</a> labels for
subdirs</li>
</ul>
</li>
<li><ahref="#footers">Headers/footers</a>
<ul>
<li><ahref="#archives">archives</a> link to other archives</li>
<li><ahref="#custom_archives">custom_archives</a> link to other
archives</li>
<li><ahref="#about">about</a> descriptive link</li>
<li><ahref="#ihtmlheaderfile">ihtmlheaderfile</a> template</li>
<li><ahref="#ihtmlfooterfile">ihtmlfooterfile</a> template</li>
</ul>
</li>
</ul>
</li>
<li><ahref="#messages">Message page options</a>
<ul>
<li><ahref="#msg_body">Body style</a>
<ul>
<li><ahref="#showhtml">showhtml</a> how much conversion to
html?</li>
<li><ahref="#href_detection">href_detection</a> how to handle
URLs</li>
<li><ahref="#showbr">showbr</a> line wrapping for body</li>
<li><ahref="#iquotes">iquotes</a> italicize quotes</li>
<li><ahref="#i18n_body">i18n_body</a> translate message body into
UTF-8</li>
<li><ahref="#mcss_url">mcss_url</a> stylesheet</li>
<li><ahref="#quote_hide_threshold">quote_hide_threshold</a> cut
excessive quoting</li>
<li><ahref="#files_by_thread">files_by_thread</a> add file with
all messages in 1 thread</li>
</ul>
</li>
<li><ahref="#links">Links</a>
<ul>
<li><ahref="#linkquotes">linkquotes</a> fine-grained link to
source of quoted text</li>
<li><ahref="#searchbackmsgnum">searchbackmsgnum</a> linkquotes
performance</li>
<li><ahref="#link_to_replies">link_to_replies</a> fine-grained
link to responses</li>
<li><ahref="#quote_link_string">quote_link_string</a> linkquotes
labels</li>
<li><ahref="#spamprotect">spamprotect</a> obfuscate email
addresses</li>
<li><ahref="#antispamdomain">antispamdomain</a> how to obfuscate
address</li>
<li><ahref="#spamprotect_id">spamprotect_id</a> obfuscate message
ids</li>
</ul>
</li>
<li><ahref="#msg_head">Headers/footers</a>
<ul>
<li><ahref="#showreplies">showreplies</a> list of messages</li>
<li><ahref="#show_msg_links">show_msg_links</a> next, previous,
next in thread</li>
<li><ahref="#show_index_links">show_index_links</a> control links
to index pages</li>
<li><ahref="#showheaders">showheaders</a> To:, From:,
Subject:</li>
<li><ahref="#show_headers">show_headers</a> others (Message-ID,
etc)</li>
<li><ahref="#format_flowed">format_flowed</a> support RFC 3676
format=flowed</li>
<li><ahref=
"#format_flowed_disable_quoted">format_flowed_disable_quoted</a>
disable support for RFC 3676 format=flowed in quoted text</li>
<li><ahref="#mhtmlheaderfile">mhtmlheaderfile</a> template</li>
<li><ahref="#mhtmlfooterfile">mhtmlfooterfile</a> template</li>
</ul>
</li>
</ul>
</li>
<li><ahref="#attachments">Attachments</a><b>Note that some of
these may affect security</b>
<ul>
<li><ahref="#inlinehtml">inlinehtml</a> where to put
text/html</li>
<li><ahref="#usemeta">usemeta</a> save Content-Type in meta
file</li>
<li><ahref="#userobotmeta">userobotmeta</a> use X-Robots-Tag in
meta files to associate attachments with annotations for
robots</li>
<li><ahref="#text_types">text_types</a> what types are like
text/plain?</li>
<li><ahref="#inline_types">inline_types</a> list what should go on
main page</li>
<li><ahref="#inline_addlink">inline_addlink</a> add in-line links
to attachments</li>
<li><ahref="#prefered_types">prefered_types</a> choose from
multipart/mixed</li>
<li><ahref="#ignore_types">ignore_types</a> discard text/x-vcard,
etc</li>
<li><ahref="#attachmentlink">attachmentlink</a> control
filenames</li>
<li><ahref="#applemail_mimehack">applemail_mimehack</a> process
multipart/alternative as multipart/mixed</li>
<li><ahref="#unsafe_chars">unsafe_chars</a> restrict filename
chars</li>
<li><ahref="#save_alts">save_alts</a> multipart/alternative
handling</li>
<li><ahref="#alts_text">alts_text</a> text for some save_alts
choices</li>
<li><ahref="#filename_base">filename_base</a> attachment file
name</li>
</ul>
</li>
<li><ahref="#sysadmin">System Administration</a>
<ul>
<li><ahref="#input">Message Input</a>
<ul>
<li><ahref="#increment">increment</a> append new message(s) to old
archive</li>
<li><ahref="#readone">readone</a> treat input as one message</li>
<li><ahref="#mbox">mbox</a> read messages from this file</li>
<li><ahref="#mbox_shortened">mbox_shortened</a> allow partial
mbox</li>
<li><ahref="#ietf_mbox">ietf_mbox</a> file format</li>
<li><ahref="#discard_dup_msgids">discard_dup_msgids</a></li>
<li><ahref="#require_msgids">require_msgids</a> discard messages
without ids</li>
</ul>
</li>
<li><ahref="#filters">Message Filtering</a>
<ul>
<li><ahref="#filter_out">filter_out</a> delete files with header
line(s)</li>
<li><ahref="#filter_require">filter_require</a> delete files
without header line(s)</li>
<li><ahref="#filter_out_full_body">filter_out_full_body</a> delete
files with line(s)</li>
<li><ahref=
"#filter_require_full_body">filter_require_full_body</a> delete
files without line(s)</li>
</ul>
</li>
<li><ahref="#files">Filesystem Output</a>
<ul>
<li><ahref="#dir">dir</a> where the archive goes</li>
<li><ahref="#overwrite">overwrite</a> regenerate old messages</li>
<li><ahref="#htmlsuffix">htmlsuffix</a> .html, .htm, etc</li>
<li><ahref="#dirmode">dirmode</a> chmod directories</li>
<li><ahref="#filemode">filemode</a> chmod html files</li>
<li><ahref="#filename_base">filename_base</a> attachment file
name</li>
</ul>
</li>
<li><ahref="#sysmisc">Miscellaneous</a>
<ul>
<li><ahref="#usegdbm">usegdbm</a> cache header info</li>
<li><ahref="#writehaof">writehaof</a> write XML archive overview
file</li>
<li><ahref="#append">append</a> create mbox archive also</li>
<li><ahref="#append_filename">append_filename</a> name of mbox
output</li>
<li><ahref="#txtsuffix">txtsuffix</a> save each raw message</li>
<li><ahref="#annotated">annotated</a> what headers indicate
message annotations</li>
<li><ahref="#deleted">deleted</a> what headers indicate deletion
<strong>deprecated</strong></li>
<li><ahref="#expires">expires</a> what headers indicate expire
date</li>
<li><ahref="#delete_older">delete_older</a> delete messages before
a date</li>
<li><ahref="#delete_newer">delete_newer</a> delete messages after
a date</li>
<li><ahref="#delete_msgnum">delete_msgnum</a> delete these
messages</li>
<li><ahref="#delete_level">delete_level</a> what to do with
deleted messages</li>
<li><ahref="#delete_incremental">delete_incremental</a> remove
previous deleted messages on-the-fly</li>
<li><ahref="#htmlmessage_edited">htmlmessage_edited</a> custom
markup body for edited messages</li>
<li><ahref=
"#htmlmessage_deleted_other">htmlmessage_deleted_other</a> custom
markup body for deleted messages (by reasons other than spam)</li>
<li><ahref=
"#htmlmessage_deleted_spam">htmlmessage_deleted_spam</a> custom
markup body for deleted messages (by spam reasons)</li>
<li><ahref="#progress">progress</a> verbosity</li>
<li><ahref="#warn_suppressions">warn_suppressions</a> warn about
ignored messages</li>
<li><ahref="#uselock">uselock</a> serialize</li>
<li><ahref="#locktime">locktime</a> timeouts</li>
<li><ahref="#base_url">base_url</a></li>
<li><ahref="#report_new_folder">report_new_folder</a> notify when
creating directory</li>
<li><ahref="#report_new_file">report_new_file</a> notify when
creating new message files</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2><aname="allpages" id="allpages">Options affecting both
messages and index pages</a></h2>
<h3><aname="locale" id="locale">Locale</a></h3>
<dl>
<dd><aid="language" name="language"></a></dd>
<dt><strong>language = [ two-or-more-letter-language-id
]</strong></dt>
<dd>This is a two-letter string specifying the default language to
use, or a longer string specifying a language and locale. Set this
the value of the language table you wish to use when running and
generating archives. See also <ahref="#iso2022jp">iso2022jp</a>
and <ahref="#eurodate">eurodate</a>.<br>
<br>
Current supported languages, with their default locales:<br>
<br>
de (de_DE) - German<br>
en (en_US) - English<br>
es (es_ES) - Spanish<br>
fi (fi_FI) - Finnish<br>
fr (fr_FR) - French<br>
el (el) - Greek<br>
gr (el_GR) - Greek<br>
is (is_IS) - Icelandic<br>
no (no_NO) - Norwegian<br>
pl (pl_PL) - Polish<br>
pt (pt_BR) - Brazilian Portuguese<br>
ru (ru_RU) - Russian<br>
sv (sv_SE) - Swedish<br>
<br>
The directory /usr/share/i18n/locales on many systems has the
locale codes that are available on that system.<br>
<br>
<i>language = en</i></dd>
<dd><aname="iso2022jp" id="iso2022jp"></a></dd>
<dt><strong>iso2022jp = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to support ISO-2022-JP messages.<br>
<br>
<i>iso2022jp = 0</i></dd>
<dd><aname="i18n" id="i18n"></a></dd>
<dt><strong>i18n = [ 0 | 1 ]</strong></dt>
<dd>Enable I18N features, hypermail must be linked with <ahref=
"http://www.gnu.org/software/libiconv/">libiconv</a>.<br>
<br>
<i>i18n = 1</i> (disabled by default)</dd>
<dd><aname="eurodate" id="eurodate"></a></dd>
<dt><strong>eurodate = [ 0 | 1 ]</strong></dt>
<dd>Set this to reflect how you want dates displayed in the index
files.<br>
Set as 1 to to use European date format "DD MM YYYY".<br>
Define as 0 to to use American date format "MM DD YYYY".<br>
<br>
<i>eurodate = 0</i></dd>
<dd><aname="dateformat" id="dateformat"></a></dd>
<dt><strong>dateformat = strftime-date-format</strong></dt>
<dd>Format used in strftime(3) call for displaying dates.<br>
See strftime(3) for the valid conversion specifications.<br>
<br>
<i>dateformat = "%D-%r Z"</i> (disabled by default)</dd>
<dd><aname="isodate" id="isodate"></a></dd>
<dt><strong>isodate = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to display article received dates in YYYY-MM-DD
HH:MM:SS format. If used with the gmtime option, a Z will be
inserted between the DD and HH.<br>
<br>
<i>isodate = 0</i></dd>
<dd><aname="gmtime" id="gmtime"></a></dd>
<dt><strong>gmtime = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to display article received dates using
Greenwich Mean Time (UTC) rather than local time.<br>
<br>
<i>gmtime = 0</i></dd>
<dd>
<h3><aname="headers" id="headers">Header options</a></h3>
<aname="label" id="label"></a></dd>
<dt><strong>label = [ Title | NONE ]</strong></dt>
<dd>This is the default title you want to call your archives.<br>
Set this to NONE to use the name of the input mailbox.<br>
<br>
<i>label = Hypermail Development List</i> (default value is
filename?????)</dd>
<dd><aname="hmail" id="hmail"></a></dd>
<dt><strong>hmail = [ Mailing List Submission Address | NONE
]</strong></dt>
<dd>Set this to the list's submission address. When enabled, this
can be used to submit a new message to the list served by the
hypermail archive. "NONE" means don't use it.<br>
<br>
<i>hmail = hypermail@hypermail.org</i> (disabled by default)</dd>
<dd><aname="newmsg_command" id="newmsg_command"></a></dd>
<dt><strong>newmsg_command = [ string ]</strong></dt>
<dd>This specifies the mail command to use when converting the
set_hmail address to links in replies. The variables $TO, $SUBJECT,
and $ID can be used in constructing the command string.<br>
<br>
<i>newmsg_command=mailto:$TO</i></dd>
<dd><aname="replymsg_command" id="replymsg_command"></a></dd>
<dt><strong>replymsg_command = [ string ]</strong></dt>
<dd>This specifies the mail command to use when converting the
set_hmail address to links in replies. The variables $TO, $SUBJECT,
and $ID can be used in constructing the command string. The value
from the <ahref="#mailcommand">mailcommand</a> option will be used
if this option is not specified.<br>
There may be browsers that will benefit from adding something like
<blockquote>%26In-Reply-To=&lt;$ID&gt;</blockquote>
to the command, but I've heard no reports of this actually
working.<br>
<br>
<i>replymsg_command=mailto:$TO?Subject=$SUBJECT</i></dd>
<dd><aname="inreplyto_command" id="inreplyto_command"></a></dd>
<dt><strong>inreplyto_command = [ string ]</strong></dt>
<dd>This specifies a URI template to a script that hypermail will
link to if it's unable to find in the archive's messages the MID
corresponding to an <em>In-Reply-To</em> header. The variable
<em>$ID</em> is used to specify where the <em>Message-Identifier
value</em> will appear in the link.<br>
<br>
<em>inreplyto_command = http://example.org/mid-resolver/$ID.</em>
(disabled by default)</dd>
<dd>
<h3><aname="misc_pages" id="misc_pages">Miscellaneous</a></h3>
<aname="stripsubject" id="stripsubject"></a></dd>
<dt><strong>stripsubject = [ string | NONE ]</strong></dt>
<dd>A string to be stripped from all subject lines. Helps unclutter
mailing lists which add tags to subject lines.<br>
<br>
<i>stripsubject = NONE</i></dd>
<dd><aname="mailcommand" id="mailcommand"></a></dd>
<dt><strong>mailcommand = [ direct mailto | cgi-bin script path |
NONE ]</strong></dt>
<dd>This is the mail command that email links go to, for instance
"mailto:$TO" or
"/cgi-bin/mail?to=$TO&replyto=$ID&subject=$SUBJECT"<br>
In constructing this command, you can specify variables:<br>
<br>
$TO : the email address of the person you're sending mail to.<br>
$ID : the ID of the message you're replying to.<br>
$SUBJECT: the subject you're replying to.<br>
<br>
NONE disables mailcommand usage.<br>
There may be browsers that will benefit from adding something like
<blockquote>%26In-Reply-To=&lt;$ID&gt;</blockquote>
to the command, but I've heard no reports of this actually
working.<br>
<br>
<i>mailcommand = mailto:$TO?Subject=$SUBJECT</i></dd>
<dd><aname="mailto" id="mailto"></a></dd>
<dt><strong>mailto = [ email-address | NONE ]</strong></dt>
<dd>The address of the contact point that is put in the HTML header
line<br>
<LINK REV=made HREF=mailto:mailto><br>
<br>
The <LINK...> header can be disabled by default by setting
mailto to NONE.<br>
<br>
<i>mailto = webmaster@hypermail.org</i> (disabled by default)</dd>
<dd><aname="domainaddr" id="domainaddr"></a></dd>
<dt><strong>domainaddr = [ domainname | NONE ]</strong></dt>
<dd>Domain-ize Addresses -- addresses appearing in the RFC2822
field which lack hostname can't be made into proper HREFs. Because
the MTA resides on the same host as the list, it is often not
required to domain-ize these addresses for delivery. In such cases,
hypermail will add the DOMAINADDR to the email address.<br>
<br>
<i>domainaddr = hypermail.org</i> (disabled by default)</dd>
<dd><aname="use_sender_date" id="use_sender_date"></a></dd>
<dt><strong>use_sender_date = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to have it use the Date: header (created by the
the system that sent the message) rather than the date/time the
message was received, for purposes such as putting in folders or
sorting. Details of which purposes this affects may change in the
future.<br>
<br>
<i>use_sender_date = 0</i></dd>
<dd><aname="fragment_prefix" id="fragment_prefix"></a></dd>
<dt><strong>fragment_prefix = [ preifx ]</strong></dt>
<dd>Put this string before the message number in each URI
fragment.<br>
<br>
<i>fragment_prefix = id</i> (default is <em>msg</em>)</dd>
<dd><aname="email_address_obfuscationx" id=
"email_address_obfuscationx"></a></dd>
<dt><strong>email_address_obfuscation = [ 0 | 1 ]</strong></dt>
<dd>Set to 1 to enable email address obfuscation using numeric
character references.<br>
<br>
<i>mail_address_obfuscationx = 1</i> (disabled by default)</dd>
<dd>
<h2><aname="index" id="index">Index page options</a></h2>
<h3><aname="index_avail" id="index_avail">Index
availability</a></h3>
<aname="folder_by_date" id="folder_by_date"></a></dd>
<dt><strong>folder_by_date = [ strftime-date-format ]</strong></dt>
<dd>This string causes the messages to be put in subdirectories by
date. The string will be passed to strftime(3) to generate
subdirectory names based on message dates. Suggested values are
"%y%m" or "%b%y" for monthly subdirectories, "%Y" for yearly,
"%G/%V" for weekly. Do not alter this for an existing archive
without removing the old html files. If you use this and update the
archive incrementally (e.g. with -u), you must use the <ahref=
"#usegdbm">usegdbm</a> option.<br>
<br>
<i>folder_by_date = %y%m</i> (disabled by default)</dd>
<dd><aname="monthly_index" id="monthly_index"></a></dd>
<dt><strong>monthly_index = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to create additional index files broken up by
month. A summary.html file will provide links to all the monthly
indices.<br>
<br>
<i>monthly_index = 0</i></dd>
<dd><aname="msgsperfolder" id="msgsperfolder"></a></dd>
<dt><strong>msgsperfolder = integer</strong></dt>
<dd>Put messages in subdirectories with this many messages per
directory. Do not use this and folder_by_date on the same archive.
Do not alter this for an existing archive without removing the old
html files. Deleted/expired messages <strong>are counted</strong>
for the purpose of deciding how many messages to put in a
subdirectory.<br>
<br>
<i>msgsperfolder = 100</i> (disabled by default)</dd>
<dd><aname="yearly_index" id="yearly_index"></a></dd>
<dt><strong>yearly_index = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to create additional index files broken up by
year. A summary.html file will provide links to all the yearly
indices.<br>
<br>
<i>yearly_index = 0</i></dd>
<dd><aname="defaultindex" id="defaultindex"></a></dd>
<dt><strong>defaultindex = [ thread | date | subject | author |
attachment ]</strong></dt>
<dd>This indicates the default type of main index hypermail will
generate. Users see this type of index when the archive is first
accessed. When using the <ahref=
"#folder_by_date">folder_by_date</a> or <ahref=
"#msgsperfolder">msgsperfolder</a> options, this option applies to
subdirectories.<br>
<br>
<i>defaultindex = thread</i></dd>
<dd><aname="default_top_index" id="default_top_index"></a></dd>
<dt><strong>default_top_index = [ folders | thread | date | subject
| author | attachment ]</strong></dt>
<dd>This specifies the default index that users can view when
entering the top level of an archive that uses the <ahref=
"#folder_by_date">folder_by_date</a> or <ahref=
"#msgsperfolder">msgsperfolder</a> option.<br>
<br>
<i>default_top_index = folders</i></dd>
<dd><aname="avoid_indices" id="avoid_indices"></a></dd>
<dt><strong>avoid_indices = [ string ]</strong></dt>
<dd>This is a list of index files to not generate. Valid types are
date, thread, author, and subject. They can be listed individually
on multiple lines or comma or space separated on a single line.
When using the <ahref="#folder_by_date">folder_by_date</a> or
<ahref="#msgsperfolder">msgsperfolder</a> options, this option
applies to subdirectories.<br>
<br>
<i>avoid_indices = subject author</i> (disabled by default)</dd>
<dd><aname="avoid_top_indices" id="avoid_top_indices"></a></dd>
<dt><strong>avoid_top_indices = [ string ]</strong></dt>
<dd>This is a list of index files to not generate for the top
directory of an archive using the folder_by_date or msgsperfolder
option. Valid types are date, thread, author, subject, folders, and
attachment.<br>
<br>
<i>avoid_top_indices = date thread author subject</i></dd>
<dd><aname="attachmentsindex" id="attachmentsindex"></a></dd>
<dt><strong>attachmentsindex = [ 0 | 1 ]</strong></dt>
<dd>Set this to Off to make hypermail not output an index of
messages with attachments.<br>
<br>
<i>attachmentsindex = On</i></dd>
<dd><aname="latest_folder" id="latest_folder"></a></dd>
<dt><strong>latest_folder = [ string ]</strong></dt>
<dd>If <ahref="#folder_by_date">folder_by_date</a> or <ahref=
"#msgsperfolder">msgsperfolder</a> are in use, create a symbolic
link by this name to the most recently created subdirectory. Note
that many web servers are configured to not follow symbolic links
for security reasons. The link will be created in the directory
specified by the "dir" or "-d" option.<br>
<br>
<i>latest_folder = current</i> (disabled by default)</dd>
<dd><aname="noindex_onindexes" id="noindex_onindexes"></a></dd>
<dt><strong>noindex_onindexes = [ 0 | 1 ]</strong></dt>
<dd>Tells hypermail to add a <strong>noindex</strong> metadata to
its generated message indexes (by author, etc.), to instruct robots
to not index the indexes. See <ahref="#annotated">anontated</a>
for further discussion on <strong>noindex</strong>.<br>
<br>
<em>noindex_onindexes = 0</em></dd>
<dd>
<h3><aname="index_body" id="index_body">Index body style</a></h3>
<aname="indextable" id="indextable"></a></dd>
<dt><strong>indextable = [ 0 | 1 ]</strong></dt>
<dd>Setting this variable to 1 will tell Hypermail to generate a
message index Subject/Author/Date listings using a table format.
Set to 0 if you want the standard Hypermail index page look and
feel.<br>
<br>
<i>indextable = 0</i></dd>
<dd><aname="reverse" id="reverse"></a></dd>
<dt><strong>reverse = [ 0 | 1 ]</strong></dt>
<dd>Setting this variable to 1 will reverse-sort the article
entries in the date and thread index files by the date they were
received. That is, the most recent messages will appear at the top
of the index rather than the other way around. Set to 0 if you want
latest message on the bottom for date and thread indexes.<br>
<br>
<i>reverse = 0</i></dd>
<dd><aname="reverse_folders" id="reverse_folders"></a></dd>
<dt><strong>reverse_folders = [ 0 | 1 ]</strong></dt>
<dd>Setting this variable to On will reverse-sort the list of
folders. That is, the most recent folders will appear at the top of
the index rather than the other way around.<br>
<br>
<i>reverse_folders = 0</i></dd>
<dd><aname="thrdlevels" id="thrdlevels"></a></dd>
<dt><strong>thrdlevels = number</strong></dt>
<dd>This specifies the number of thread levels to outline in the
thread index. For instance, if thrdlevels is 2, replies to messages
will be indented once in the index, but replies to replies, etc.,
will only be indented once as well. The normal value is 4.<br>
<br>
<i>thrdlevels = 4</i></dd>
<dd><aname="thread_file_depth" id="thread_file_depth"></a></dd>
<dt><strong>thread_file_depth = [ 0 | 1 ]</strong></dt>
<dd>If nonzero, break the threads index file into multiple files,
with the initial message of each thread in the main index file
along with links to files containing the replies. Setting this to 1
creates one file for each thread that has replies, and is
recommended for archives with over a few hundred messages. Setting
this greater than 1 will produce multiple levels of files for each
thread whose replies are nested by more than 1 level, but that is
rarely useful. This option is currently disabled if the indextable
option is turned on, and probably needs to be less than
thrdlevels.<br>
<br>
<i>thread_file_depth = 0</i></dd>
<dd><aname="icss_url" id="icss_url"></a></dd>
<dt><strong>icss_url= [ URL | NONE ]</strong></dt>
<dd>This option let's you specify an external stylesheet that you
would like to link to the index files. The stylesheet will be
linked to thru a LINK element in the HEAD in the document's
HEAD.<br>
By default, this option is deactivated.<br>
<br>
<i>icss_url =
http://www.w3.org/StyleSheets/Mail/public-messagelist.css</i></dd>
<dd><aname="describe_folder" id="describe_folder"></a></dd>
<dt><strong>describe_folder = format string</strong></dt>
<dd>Controls the labels used in folders.html to describe the
directories created by the <ahref=
"#folder_by_date">folder_by_date</a> or <ahref=
"#msgsperfolder">msgsperfolder</a> options. For folder_by_date
labels, the describe_folder string will be passed to strftime(3)
the same as the folder_by_date string.<br>
For msgsperfolder:<br>
%d for the directory number (starts with 0)<br>
%D for the directory number (starts with 1)<br>
%m for the number of the first message in the directory<br>
%M for the number of the last message that can be put in the
directory.<br>
The default is the value of folder_by_date if that is selected,
"%d" for msgsperfolder.<br>
<br>
<i>describe_folder = "%b %Y"</i></dd>
<dd>
<h3><aname="footers" id="footers">Index headers/footers</a></h3>
<aname="archives" id="archives"></a></dd>
<dt><strong>archives = [ URL | NONE ]</strong></dt>
<dd>This creates a link in the archived index pages labeled "Other
mail archives". Set this to NONE to omit such a link.<br>
<br>
<i>archives = NONE</i></dd>
<dd><aname="custom_archives" id="custom_archives"></a></dd>
<dt><strong>custom_archives = [ HTML text | NONE ]</strong></dt>
<dd>If this variable is defined, a navigation entry will be created
below the sorted_by_x list entry, with the text "Other mail
archives: " followed by the value of this variable. Set it to NONE
to ommit such an entry.<br>
<br>
<i>custom_archives = NONE</i></dd>
<dd><aname="about" id="about"></a></dd>
<dt><strong>about = [ URL | NONE ]</strong></dt>
<dd>This creates a link in the archived index pages labeled "About
this archive". Set this to NONE to omit such a link.<br>
<br>
<i>about = NONE</i></dd>
<dd><aname="ihtmlheaderfile" id="ihtmlheaderfile"></a></dd>
<dt><strong>ihtmlheaderfile = [ path to index header template file
| NONE ]</strong></dt>
<dd>Set this to the path to the Index header template file. The
template file contains HTML directives and substitution cookies for
runtime expansion.<br>
<br>
<i>ihtmlheaderfile = /lists/hypermail-idxheader.hyp</i> (disabled
by default)</dd>
<dd><aname="ihtmlfooterfile" id="ihtmlfooterfile"></a></dd>
<dt><strong>ihtmlfooterfile = [ path to index footer template file
| NONE ]</strong></dt>
<dd>Set this to the path to the Index footer template file. The
template file contains HTML directives and substitution cookies for
runtime expansion.<br>
<br>
<i>ihtmlfooterfile = /lists/hypermail-idxfooter.hyp</i> (disabled
by default)</dd>
<dd>
<h2><aname="messages" id="messages">Message page options</a></h2>
<h3><aname="msg_body" id="msg_body">Body style</a></h3>
<aname="showhtml" id="showhtml"></a></dd>
<dt><strong>showhtml = [ 0 | 1 | 2 ]</strong></dt>
<dd>Set this to 1 to show the articles in a proportionally-spaced
font rather than a fixed-width (monospace) font. Setting this
option to 1 also tells Hypermail to attempt to italicize quoted
passages in articles.<br>
Set this to 2 for more complex conversion to html similar to that
in <ahref=
"http://www.cs.wustl.edu/~seth/txt2html/">txt2html.pl</a>.<br>
Showhtml = 2 will normally produce nicer looking results than<br>
showhtml = 1, and showhtml = 0 will look pretty dull, but<br>
1 and 2 run risks of altering the appearance in undesired ways.<br>
<br>
<i>showhtml = 1</i></dd>
<dd><aname="href_detection" id="href_detection"></a></dd>
<dt><strong>href_detection = [ 0 | 1 ]</strong></dt>
<dd>Set this to 1 to assume that any string on the body of the
message that says <A HREF=" ... </A> is a URL, together
with its markup and treat it as such.<br>
<br>
<i>href_detection = 0</i></dd>
<dd><aname="showbr" id="showbr"></a></dd>
<dt><strong>showbr = [ 0 | 1 ]</strong></dt>
<dd>Set this to 1 if you want article lines to end with the
<br> tag. Else set to 0 to have non-quoted lines word-wrap.
Only takes effect if showhtml is set to 1.<br>
<br>
<i>showbr = 1</i></dd>
<dd><aname="iquotes" id="iquotes"></a></dd>
<dt><strong>iquotes = [ 0 | 1 ]</strong></dt>
<dd>Set this to 1 if you want quoted lines to be shown in italics.
Only take effect if showhtml is set to 1.<br>
<br>
<i>iquotes = 1</i></dd>
<dd><aname="i18n_body" id="i18n_body"></a></dd>
<dt><strong>i18n_body = [ 0 | 1 ]</strong></dt>
<dd>Translate message body into UTF-8. The <i>i18n</i>
configuration option must be enabled.<br>
<br>
<i>i18n_body = 1</i> (disabled by default)</dd>
<dd><aname="mcss_url" id="mcss_url"></a></dd>
<dt><strong>mcss_url= [ URL | NONE ]</strong></dt>
<dd>This option let's you specify an external stylesheet that you
would like to link to the message files. The stylesheet will be
linked to thru a LINK element in the HEAD in the document's HEAD.
By default, this option is inactive.<br>
<br>
<i>mcss_url =
http://www.w3.org/StyleSheets/Mail/public-message.css</i></dd>
<dd><aname="quote_hide_threshold" id=
"quote_hide_threshold"></a></dd>
<dt><strong>quote_hide_threshold = percent (integer)</strong></dt>
<dd>If the <ahref="#linkquotes">linkquotes</a> option is on,
setting this to an integer less than 100 will cause it to replace
quoted text with one-line links if the percent of lines in the
message body (exluding the signature) consisting of quoted text
exceeds the number indicated by this option.<br>
<br>
<i>quote_hide_threshold = 100</i></dd>
<dd><aname="files_by_thread" id="files_by_thread"></a></dd>
<dt><strong>files_by_thread = [ 0 | 1]</strong></dt>
<dd>Set this to 1 to generate (in addition to the usual files), a
file for each thread that contains all the messages in that thread.
The first line in each thread of the thread index page links to
this file instead of to a single message.<br>
<br>
<i>files_by_thread = 0</i></dd>
<dd>
<h3><aname="links" id="links">Message page links</a></h3>
<aname="linkquotes" id="linkquotes"></a></dd>
<dt><strong>linkquotes = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to create fine-grained links from quoted text to
the text where the quote originated. It also improves the threads
index file by more accurately matching messages with replies. Note
that this may be rather cpu intensive (see the <ahref=
"#searchbackmsgnum">searchbackmsgnum</a> option to alter the
performance).<br>
<br>
<i>linkquotes = 0</i></dd>
<dd><aname="searchbackmsgnum" id="searchbackmsgnum"></a></dd>
<dt><strong>searchbackmsgnum = postive integer</strong></dt>
<dd>If the <ahref="#linkquotes">linkquotes</a> option is on and an
incremental update is being done (-u option), this controls the
tradeoff between speed and the reliability of finding the right
source for quoted text. Try to set it to the largest number of
messages between a message and the final direct reply to that
message.<br>
<br>
<i>searchbackmsgnum = 500</i></dd>
<dd><aname="link_to_replies" id="link_to_replies"></a></dd>
<dt><strong>link_to_replies = [ string | NONE]</strong></dt>
<dd>If the <ahref="#linkquotes">linkquotes</a> option is on,
specifying a string here causes it to generate links from original
quoted text the location(s) in replies which quote them. The string
is used to display the link.<br>
<br>
<i>link_to_replies = NONE</i></dd>
<dd><aname="quote_link_string" id="quote_link_string"></a></dd>
<dt><strong>quote_link_string = [ string | NONE ]</strong></dt>
<dd>If the <ahref="#quote_hide_threshold">quote_hide_threshold</a>
option is being used, the quote_link_string will be used if
available to display the link that replaces the quoted text. If no
string is specified here, the first line of each section of quoted
text will used.<br>
<br>
<i>quote_link_string = NONE</i></dd>
<dd><aname="spamprotect" id="spamprotect"></a></dd>
<dt><strong>spamprotect = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to make hypermail not output real email
addresses in the output HTML but instead it will obfuscate them a
little. You can control the obfuscation with <ahref=
"#antispamdomain">antispamdomain</a>.<br>
<br>
<i>spamprotect = On</i></dd>
<dd><aname="antispamdomain" id="antispamdomain"></a></dd>
<dt><strong>antispamdomain = string with invalid
domain</strong></dt>
<dd>By default the spamprotect option only does a small amount of
massaging of email addresses. Use this to completely replace the
domain from which a message originates (everything after the @)
with some string to confuse screen-scraping programs. It is
probably wise to make this an invalid mail domain.<br>
<br>
<i>antispamdomain = "email.domain.hidden"</i> (disabled by
default)</dd>
<dd><aname="spamprotect_id" id="spamprotect_id"></a></dd>
<dt><strong>spamprotect_id = [ 0 | 1 ]</strong></dt>
<dd>Set this to On to make hypermail not output real email message
ids in HTML comments (sometimes used internally by hypermail) but
instead it will obfuscate them a little so they don't look like
email addresses to spammers.<br>
<br>
<i>spamprotect_id = On</i></dd>
<dd>
<h3><aname="msg_head" id="msg_head">Message page
headers/footers</a></h3>
<aname="showreplies" id="showreplies"></a></dd>
<dt><strong>showreplies = [ 0 | 1 ]</strong></dt>
<dd>Set to 1 to show all replies to a message as links in article
files. If this is set to 0 no reply links are generated.<br>
<br>
<i>showreplies = 1</i></dd>
<dd><aname="show_msg_links" id="show_msg_links"></a></dd>
<dt><strong>show_msg_links = [ 0 | 1 | 3 | 4 ]</strong></dt>
<dd>Set this to 1 if you want links to Next, Prev, Next thread,
Reply to, etc. displayed on the article pages. Setting this to 0
disables these links from appearing on the generated pages. Set it
to 3 to produce those links only at the top of the message pages,
or 4 to produce those links only at the bottom of the message.<br>
<br>
<i>show_msg_links = 1</i></dd>
<dd><aname="show_index_links" id="show_index_links"></a></dd>
<dt><strong>show_index_links = [ 0 | 1 | 3 | 4 ]</strong></dt>
<dd>Set this to 1 to show links to index pages from the top and
bottom of each message file. Set it to 0 to avoid those links. Set
it to 3 to show the links only at the top of the message pages, or
4 to produce those links only at the bottom of the message.<br>
<br>
<i>show_index_links = 1</i></dd>
<dd><aname="showheaders" id="showheaders"></a></dd>
<dt><strong>showheaders = [ 0 | 1 ]</strong></dt>
<dd>Set this to 1 to show the RFC 2822 message headers To:, From:,
and Subject: information found in the email messages. Set to 0 if
you want to hide mail headers in articles.<br>
<br>
<i>showheaders = 0</i></dd>
<dd><aname="show_headers" id="show_headers"></a></dd>
<dt><strong>show_headers = List of RFC 2822 Headers to
display</strong></dt>
<dd>This is the list of headers to be displayed if showheaders is
set to 1 (TRUE) They can be listed comman or space separated all on
a single line such as<br>
show_headers =
From,Subject,Date,Message-ID<br>
<br>
or they can be listed individually or any combination of.<br>
<br>
show_headers = From<br>
show_headers = Subject<br>
show_headers = Date<br>
show_headers = Message-ID<br>
<br>
If show_headers contains the special character ``*'', then
hypermail will display all header lines.<br>
<strong>NOTE:</strong> Do not put the ':' at the end of the
headers.<br>
<br>
<i>show_headers = From,Subject,Date,Message-ID</i> (disabled by
default)</dd>
<dd><aname="format_flowed" id="format_flowed"></a></dd>
<dt><strong>format_flowed [ 0 | 1 ] (EXPERIMENTAL)</strong></dt>
<dd>Enable this option to support RFC 3676 format=flowed. When this
option is enabled and a message says it is supporting
format=flowed, hypermail will recreate a long-line that has been
split into multiple lines as a single one.<br>
<br>
<em>format_flowed = 1</em> (disabled by default)</dd>
<dd><aname="format_flowed_disable_quoted" id=
"format_flowed_disable_quoted"></a></dd>
<dt><strong>format_flowed_disable_quoted [ 0 | 1 ]</strong></dt>
<dd>Use this option if you want to disable support for
format=flowed inside quoted text (the lines starting with one or
more '>' characters). This option is always disabled if
<strong>format_flowed</strong> is not enabled.<br>
<br>
<em>format_flowed_disable_quoted = 1</em> (disabled by
default)</dd>
<dd><aname="mhtmlheaderfile" id="mhtmlheaderfile"></a></dd>
<dt><strong>mhtmlheaderfile = [ path to message header template
file | NONE ]</strong></dt>
<dd>Set this to the path to the Message header template file. The
template file contains HTML directives and substitution cookies for
runtime expansion.<br>
<br>
<i>mhtmlheaderfile = /lists/hypermail-msgheader.hyp</i> (disabled
by default)</dd>
<dd><aname="mhtmlfooterfile" id="mhtmlfooterfile"></a></dd>
<dt><strong>mhtmlfooterfile = [ path to message footer template
file | NONE ]</strong></dt>
<dd>Set this to the path to the Message footer template file. The
template file contains HTML directives and substitution cookies for
runtime expansion.<br>
<br>
<i>mhtmlfooterfile = /lists/hypermail-msgfooter.hyp</i> (disabled
by default)</dd>
<dd>
<h2><aname="attachments" id="attachments">Attachments</a></h2>
<aname="inlinehtml" id="inlinehtml"></a></dd>
<dt><strong>inlinehtml [ 0 | 1 ]</strong></dt>
<dd>Define to On to make text/html parts to get inlined with the
mails. If set to Off, HTML-parts will be stored as separate files.
A "Content-Disposition: attachment;" line in the mail will cause an
HTML-part to be stored as a separate file even if this option is
On.<br>
<br>
<i>inlinehtml = 1</i></dd>
<dd><aname="usemeta" id="usemeta"></a></dd>
<dt><strong>usemeta [ 0 | 1 ]</strong></dt>
<dd>This option allows you to use metadata to store the content
type of a MIME attachments and, later on, when a user browses the
attachment, send back this information in the HTTP Content-Type
header. When set to <strong>1</strong>, the Content-Type header of
a MIME attachment will be stored in a metadata file.<br>
Let us say that the MIME attachments for a message are stored in
directory <strong>att-num</strong>. The metadata for those
attachments will then be stored in directory
<strong>att-num/.meta</strong>. If a MIME attachment is stored in
file <strong>att-file</strong>, its metadata will be stored in file
<strong>att-file.meta</strong>. This convention is directly
compatible with the Apache server handling of metadata.<br>
<br>
<i>usemeta = 0</i></dd>
<dd><aname="userobotmeta" id="userobotmeta"></a></dd>
<dt><strong>userobotmeta [ 0 | 1 ]</strong></dt>
<dd>If a message has annotations for robots and <ahref=
"#usemeta">usemeta</a> is enabled, setting this option to
<strong>1</strong> will associate the value of the annotations to
each attachment using the experimental
<strong>X-Robots-Tag</strong> HTTP header. For more information,
browse Google's <ahref=
"https://developers.google.com/webmasters/control-crawl-index/docs/robots_meta_tag">
Robots Meta Tag documentation</a>.<br>
<br>
<em>userobotmeta = 0</em></dd>
<dd><aname="text_types" id="text_types"></a></dd>
<dt><strong>text_types = list of types to be the same as
text/plain</strong></dt>
<dd>This is a list of MIME types that you want hypermail to treat
exactly as if they were text/plain. They can be listed individually
on multiple lines or comma or space separated on a single line.<br>
<br>
<i>text_types = text, text/plain, message/rfc2822</i> (disabled by
default)</dd>
<dd><aname="inline_types" id="inline_types"></a></dd>
<dt><strong>inline_types = indicate data types data to be
inlined</strong></dt>
<dd>This is the list of MIME types that you want inlined as opposed
to simply linked into the message. They can be listed individually
on multiple lines or comma or space separated on a single line.<br>