forked from sympa-community/sympa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmhonarc-ressources.tt2
734 lines (622 loc) · 21.5 KB
/
mhonarc-ressources.tt2
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
<!-- ============================================================== -->
<!-- Variable definitions -->
<!-- ============================================================== -->
<!--
User defined variables are defined by the DEFINEVAR element. The first
line is the name of the variable and subsequent lines to the close tag
are the value of the variable.
User defined variables are extremely useful when the same layout
information occurs in multiple places. It also help centralize
information that maybe likely to change. User defined variables can
reference other variables.
-->
<DefineVar>
CALENDAR
<div id="ArcCalendar">
($tag$% FOREACH year = calendar %$tag$)
<div>
<ul class="calendar">
<li class="calendarLinksInactive">($tag$% year.key %$tag$)</li>
($tag$% FOREACH month = ['01' '02' '03' '04' '05' '06' '07' '08' '09' '10' '11' '12'] %$tag$)
($tag$% IF year.value.item(month) %$tag$)
($tag$% IF year.key == '$yyyy$' && month == '$mois$'%$tag$) <li class="calendarLinksCurrentPage"><a href="($tag$% path_cgi %$tag$)/arc/($tag$% list %$tag$)/($tag$% year.key %$tag$)-($tag$% month %$tag$)/" title="($tag$%|loc(year.value.item(month))%$tag$)%1 message(s)($tag$%END%$tag$)">($tag$% month %$tag$)</a></li>
($tag$% ELSE %$tag$)<li class="calendarLinks"><a href="($tag$% path_cgi %$tag$)/arc/($tag$% list %$tag$)/($tag$% year.key %$tag$)-($tag$% month %$tag$)/" title="($tag$%|loc(year.value.item(month))%$tag$)%1 message(s)($tag$%END%$tag$)">($tag$% month %$tag$)</a></li>
($tag$% END %$tag$)
($tag$% ELSE %$tag$)<li class="calendarLinksInactive">($tag$% month %$tag$)</li>
($tag$% END %$tag$)
($tag$% END %$tag$)
</ul>
</div>
($tag$% END %$tag$)
</div>
</DefineVar>
<DefineVar>
SEARCH_FORM
<div class="search_form">
<form method="post" action="($tag$% path_cgi %$tag$)">
<input name="list" type="hidden" value="($tag$% list %$tag$)" />
<input name="archive_name" type="hidden" value="($tag$% archive_name %$tag$)" />
<input name="how" type="hidden" value="phrase" />
<input name="age" type="hidden" value="new" />
<input name="case" type="hidden" value="off" />
<input name="match" type="hidden" value="partial" />
<input name="limit" type="hidden" value="10" />
<input name="body" type="hidden" value="true" />
<input name="subj" type="hidden" value="true" />
<input id="key_word" name="key_word" type="text" size="12" />
<input name="action" type="hidden" value="arcsearch" />
<input type="submit" class="MainMenuLinks" name="action_arcsearch" value="($tag$%|loc%$tag$)Search($tag$%END%$tag$)" onClick="return isNotEmpty('key_word')" />
<input type="submit" class="MainMenuLinks" name="action_arcsearch_form" value="($tag$%|loc%$tag$)Advanced search($tag$%END%$tag$)" />
</form>
</div>
</DefineVar>
<DefineVar>
TOP_PANEL
<div id="ActionHeader">
$SEARCH_FORM$
$CALENDAR$
<div class="text_center"><strong>$PRINTABLE_MONTH$ $NUMOFMSG$ ($tag$%|loc%$tag$)mails($tag$%END%$tag$)</strong></div><br />
<!-- ($tag$%|loc%$tag$)Pages navigation: ($tag$%END%$tag$)<br /> -->
</div>
</DefineVar>
<DefineVar>
PRINTABLE_MONTH
($tag$%|locdt("$yyyy$/$mois$")%$tag$)%Y/%m($tag$%END%$tag$)
</DefineVar>
<DefineVar>
SELECTED_MONTH
<P><font color="($tag$% dark_color %$tag$)" size="+1"><strong>
$PRINTABLE_MONTH$
</strong></FONT><br />
<HR width="30%">
</P>
</DefineVar>
<DefineVar>
POWERED_BY
($tag$% IF '$with_powered_by$' -%$tag$)
<hr size="1" noshade>
<p><font size="-1">
($tag$%|loc%$tag$)Archive powered by($tag$%END%$tag$) <a href="$DOCURL$">MHonArc $VERSION$</a>.
</font></p>
($tag$%- END %$tag$)
</DefineVar>
<!-- ============================================================== -->
<!-- MIME Resources -->
<!-- ============================================================== -->
<DECODEHEADS>
<MIMEARGS>
text/plain; asis=us-ascii:iso-8859-1:iso-8859-2 nonfixed quote htmlcheck maxwidth=78
text/html; asis=us-ascii:iso-8859-1:iso-8859-2 allownoncidurls
m2h_external::filter; subdir usename
</MIMEARGS>
<CHARSETALIASES>
big5; big5
big5; big5-eten
</CHARSETALIASES>
<CharsetConverters override>
plain; mhonarc::htmlize
default; -decode-
</CharsetConverters>
<-- Need to also register UTF-8-aware text clipping function -->
<TextClipFunc>
MHonArc::UTF8::clip; MHonArc/UTF8.pm
</TextClipFunc>
<TextEncode>
utf-8; MHonArc::UTF8::to_utf8; MHonArc/UTF8.pm
</TextEncode>
<!-- ============================================================== -->
<!-- Options -->
<!-- ============================================================== -->
<!--
It is good to be explicit when possible since a default resource file,
and/or environment variables, may be in affect.
-->
<NOMAILTO>
<MULTIPG>
<NODOC>
<SORT>
<NOFOLREFS>
<IDXSIZE>
30
</IDXSIZE>
<!-- should not be changed -->
<IDXFNAME>
mail1.html
</IDXFNAME>
<!-- should not be changed -->
<TIDXFNAME>
thrd1.html
</TIDXFNAME>
<!-- ============================================================== -->
<!-- Main index resources -->
<!-- ============================================================== -->
<!--
IDXPGSSMARKUP
IDXPGBEGIN
LISTBEGIN
(AUTHORBEGIN |
DAYBEGIN |
SUBJECTBEGIN)?
LITEMPLATE+
(AUTHOREND |
DAYEND |
SUBJECTEND)?
LISTEND
DOC?
IDXPGEND
-->
<!-- mail1.html -->
<IDXPGBEGIN>
[%TAGS ($tag$% %$tag$) %]
<!-- begin header -->
<div id="ActionHeader">
$SEARCH_FORM$
$CALENDAR$
<div class="text_center"><strong>$PRINTABLE_MONTH$ $NUMOFMSG$ ($tag$%|loc%$tag$)mails($tag$%END%$tag$)</strong></div><br />
<!-- ($tag$%|loc%$tag$)Pages navigation: ($tag$%END%$tag$)<br /> -->
<span class="search_form">
<a class="ArcMenuLinksSortActive" href="mail$PAGENUM$.html">($tag$%|loc%$tag$)Chronological($tag$%END%$tag$)</a>
<a class="ArcMenuLinksSortInactive" href="thrd$PAGENUM$.html">($tag$%|loc%$tag$)Thread($tag$%END%$tag$)</a>
</span>
$PREVPGLINK$ ($tag$%|loc($PAGENUM$,$NUMOFPAGES$)%$tag$)page %1 / %2($tag$%END%$tag$) $NEXTPGLINK$
</div>
<!-- end header -->
</IDXPGBEGIN>
<!-- top of message list -->
<LISTBEGIN>
<br />
($tag$% IF is_owner %$tag$)<form id="msglist" action="($tag$% path_cgi %$tag$)" method="post">($tag$%END%$tag$)
<ul>
</LISTBEGIN>
<!-- item of maillist.html -->
<LITEMPLATE>
<li>($tag$% IF is_owner %$tag$)<input type="checkbox" name="msgid" value="$MSGID$" />($tag$%END%$tag$)
<b>$SUBJECT$</b>, <em>$FROMNAME$</em></li>
</LITEMPLATE>
<!-- bottom of message list -->
<LISTEND>
</ul><br />
($tag$% IF is_owner %$tag$)
<input type="hidden" name="yyyy" value="$yyyy$" />
<input type="hidden" name="month" value="$mois$" />
<input type="hidden" name="action" value="remove_arc" />
<input type="hidden" name="list" value ="($tag$% list %$tag$)" />
<input class="MainMenuLinks" type="button" value="($tag$%|loc%$tag$)Toggle Selection($tag$%END%$tag$)" onclick="toggle_selection(document.forms['msglist'].msgid)" />
<input type="submit" class="MainMenuLinks" name="action_remove_arc" value="($tag$%|loc%$tag$)Tag messages for deletion($tag$%END%$tag$)" onClick="return request_confirm('($tag$%|loc%$tag$)Do you really want to delete these messages ?($tag$%END%$tag$)')"/><br />
<br />
</form>
($tag$%END%$tag$)
</LISTEND>
<!-- maillist.html bottom -->
<IDXPGEND>
$POWERED_BY$
($tag$%TAGS [% %]%$tag$)
</IDXPGEND>
<!-- links definition -->
<PrevPgLink chop>
<a class="ArcMenuLinks" href="$FIRSTPG$"><<</a>
<a class="ArcMenuLinks" href="$PREVPG$"><</a>
</PrevPgLink>
<PrevPgLinkIA chop>
<a class="ArcMenuLinksInactive"><<</a>
<a class="ArcMenuLinksInactive"><</a>
</PrevPgLinkIA>
<NextPgLink chop>
<a class="ArcMenuLinks" href="$NEXTPG$">></a>
<a class="ArcMenuLinks" href="$LASTPG$">>></a>
</NextPgLink>
<NextPgLinkIA chop>
<a class="ArcMenuLinksInactive">></a>
<a class="ArcMenuLinksInactive">>></a>
</NextPgLinkIA>
<!-- ============================================================== -->
<!-- Thread index resources -->
<!-- ============================================================== -->
<!--
TIDXPGSSMARKUP
TIDXPGBEGIN
THEAD
((TTOPBEGIN
TSUBLISTBEG
((TLITXT
[possible subthread listing]
TLIEND)|
(TLINONE
[possible subthread listing]
TLINONEEND))+
(TSUBJECTBEG
((TLITXT
[possible subthread listing]
TLIEND)|
(TLINONE
[possible subthread listing]
TLINONEEND))+
TSUBJECTEND)?
TSUBLISTEND
TTOPEND)
|
TSINGLETXT)* [message w/o references or follow-ups]
TFOOT
DOC?
TIDXPGEND
-->
<!-- top of thread index -->
<TIDXPGBEGIN>
[%TAGS ($tag$% %$tag$) %]
</TIDXPGBEGIN>
<THEAD>
<!-- begin header -->
<div id="ActionHeader">
$SEARCH_FORM$
$CALENDAR$
<div class="text_center"><strong>$PRINTABLE_MONTH$ $NUMOFMSG$ ($tag$%|loc%$tag$)mails($tag$%END%$tag$)</strong></div><br />
<!-- ($tag$%|loc%$tag$)Pages navigation: ($tag$%END%$tag$)<br /> -->
<span class="search_form">
<a class="ArcMenuLinksSortInactive" href="mail$PAGENUM$.html">($tag$%|loc%$tag$)Chronological($tag$%END%$tag$)</a>
<a class="ArcMenuLinksSortActive" href="thrd$PAGENUM$.html">($tag$%|loc%$tag$)Thread($tag$%END%$tag$)</a>
</span>
$TPREVPGLINK$ ($tag$%|loc($PAGENUM$,$NUMOFPAGES$)%$tag$)page %1 / %2($tag$%END%$tag$) $TNEXTPGLINK$
</div>
<!-- end header -->
($tag$% IF is_owner %$tag$)<form id="msglist" action="($tag$% path_cgi %$tag$)" method="post">($tag$%END%$tag$)
<ul>
</THEAD>
<TSINGLETXT>
<li>($tag$% IF is_owner %$tag$)<input type="checkbox" name="msgid" value="$MSGID$" />($tag$%END%$tag$)<b>$SUBJECT$</b>, <em>$FROMNAME$, ($tag$%|locdt("$YYYYMMDD$")%$tag$)%m/%d/%Y($tag$%END%$tag$)</em>
</TSINGLETXT>
<TTOPBEGIN>
<li>($tag$% IF is_owner %$tag$)<input type="checkbox" name="msgid" value="$MSGID$" />($tag$%END%$tag$)<b>$SUBJECT$</b>, <em>$FROMNAME$, ($tag$%|locdt("$YYYYMMDD$")%$tag$)%m/%d/%Y($tag$%END%$tag$)</em>
</TTOPBEGIN>
<TLITXT>
<li>($tag$% IF is_owner %$tag$)<input type="checkbox" name="msgid" value="$MSGID$" />($tag$%END%$tag$)<b>$SUBJECT$</b>, <em>$FROMNAME$, ($tag$%|locdt("$YYYYMMDD$")%$tag$)%m/%d/%Y($tag$%END%$tag$)</em>
</TLITXT>
<TTOPEND>
</li>
</TTOPEND>
<TFOOT>
</ul>
($tag$% IF is_owner %$tag$)
<input type="hidden" name="yyyy" value="$yyyy$" />
<input type="hidden" name="month" value="$mois$" />
<input type="hidden" name="action" value="remove_arc" />
<input type="hidden" name="list" value ="($tag$% list %$tag$)" />
<input class="MainMenuLinks" type="button" value="($tag$%|loc%$tag$)Toggle Selection($tag$%END%$tag$)" onclick="toggle_selection(document.forms['msglist'].msgid)" />
<input type="submit" class="MainMenuLinks" name="action_remove_arc" value="($tag$%|loc%$tag$)Tag messages for deletion($tag$%END%$tag$)" onClick="return request_confirm('($tag$%|loc%$tag$)Do you really want to delete these messages ?($tag$%END%$tag$)')"/><br />
<br />
</form>
($tag$%END%$tag$)<br />
</TFOOT>
<TIDXPGEND>
$POWERED_BY$
($tag$%TAGS [% %]%$tag$)
</TIDXPGEND>
<TCONTBEGIN>
<li><strong>$SUBJECTNA$</strong>($tag$%|loc%$tag$), <em>(continued)</em>($tag$%END%$tag$)
</TCONTBEGIN>
<TSUBJECTBEG>
<li>($tag$%|loc%$tag$)<Possible follow-up(s)>($tag$%END%$tag$)</li>
</TSUBJECTBEG>
<TLINONE>
<li>($tag$%|loc%$tag$)<em>Message not available</em>($tag$%END%$tag$)
</TLINONE>
<!-- links definition -->
<TPrevPgLink chop>
<a class="ArcMenuLinks" href="$TFIRSTPG$"><<</a>
<a class="ArcMenuLinks" href="$TPREVPG$"><</a>
</TPrevPgLink>
<TPrevPgLinkIA chop>
<a class="ArcMenuLinksInactive"><<</a>
<a class="ArcMenuLinksInactive"><</a>
</TPrevPgLinkIA>
<TNextPgLink chop>
<a class="ArcMenuLinks" href="$TNEXTPG$">></a>
<a class="ArcMenuLinks" href="$TLASTPG$">>></a>
</TNextPgLink>
<TNextPgLinkIA chop>
<a class="ArcMenuLinksInactive">></a>
<a class="ArcMenuLinksInactive">>></a>
</TNextPgLinkIA>
<!-- ================================================================== -->
<!-- Message Page Resources -->
<!-- ================================================================== -->
<!--
MSGPGSSMARKUP
MSGPGBEGIN
MSGHEAD
TOPLINKS
SUBJECTHEADER
Converted message header
HEADBODYSEP
Converted message body
MSGBODYEND
(FOLUPBEGIN
FOLUPLITXT+
FOLUPEND)?
(REFSBEGIN
REFSLITXT+
REFSEND)?
BOTLINKS
MSGFOOT
MSGPGEND
-->
<MSGPGBEGIN>
[%TAGS ($tag$% %$tag$) %]
</MSGPGBEGIN>
<TOPLINKS>
<div id="ActionHeader">
<div class="text_center"><h2>($tag$% subtitle %$tag$)</h2></div><br />
<span class="search_form">
<a class="ArcMenuLinksSortInactive" href="$IDXFNAME$#$MSGNUM$">($tag$%|loc%$tag$)Chronological($tag$% END %$tag$)</a>
<a class="ArcMenuLinksSortInactive" href="$TIDXFNAME$#$MSGNUM$">($tag$%|loc%$tag$)Thread($tag$% END %$tag$)</a>
</span>
<ul class="MainMenu">
$PREVBUTTON$ ($tag$%|loc%$tag$)Chronological($tag$%END%$tag$) $NEXTBUTTON$ $TPREVBUTTON$ ($tag$%|loc%$tag$)Thread($tag$%END%$tag$) $TNEXTBUTTON$
</ul>
</div>
<div>
<!-- end header -->
</TOPLINKS>
<HEADBODYSEP>
</div>
<hr size="1" noshade>
</HEADBODYSEP>
<MSGBODYEND>
($tag$% IF '$with_tslice$' -%$tag$)
<br clear="all" />
<hr size="1" noshade>
$TSLICE(10;10;1)$
($tag$%- END %$tag$)
</MSGBODYEND>
<BOTLINKS>
</BOTLINKS>
<MSGPGEND>
$POWERED_BY$
($tag$%TAGS [% %]%$tag$)
</MSGPGEND>
<MSGPGSSMARKUP>
</MSGPGSSMARKUP>
<SUBJECTHEADER>
($tag$% IF user.email && include_picture %$tag$)
<div id="pictures_block" style="float: left; padding: 0em; margin: 0em;">
<div id="large">
<img src="($tag$% include_picture %$tag$)" alt="($tag$%|loc%$tag$)picture($tag$%END%$tag$)" />
</div>
</div>
($tag$% END %$tag$)
($tag$% IF user.email && action == 'arc' %$tag$)
<span class="ArcActions">
<form action="($tag$% path_cgi %$tag$)" method="post" style="border: none;">
<input type="hidden" name="in_reply_to" value="$MSGID$" />
<input type="hidden" name="subject" value="Re: $SUBJECTNA$" />
<input type="hidden" name="list" value="($tag$% list %$tag$)" />
<input type="hidden" name="fromname" value="$FROMNAME$" />
<input type="hidden" name="fromaddr" value="$FROMADDRNAME:J$@$FROMADDRDOMAIN$" />
($tag$% IF list_conf.reply_to_header.apply == 'forced' %$tag$)
($tag$% IF list_conf.reply_to_header.value == 'all' %$tag$)
<input type="hidden" name="to" value="$FROMADDRNAME:J$ $FROMADDRDOMAIN$,($tag$% list %$tag$) ($tag$% list_conf.host %$tag$)" />
($tag$% ELSIF list_conf.reply_to_header.value == 'other_email' %$tag$)
($tag$% SET oemail = list_conf.reply_to_header.other_email %$tag$)
<input type="hidden" name="to" value="($tag$% oemail.replace('@',' ') %$tag$)" />
($tag$% ELSIF list_conf.reply_to_header.value == 'list' %$tag$)
<input type="hidden" name="to" value="($tag$% list %$tag$) ($tag$% list_conf.host %$tag$)" />
($tag$% ELSIF list_conf.reply_to_header.value == 'sender' %$tag$)
<input type="hidden" name="to" value="$FROMADDRNAME:J$ $FROMADDRDOMAIN$" />
($tag$% END %$tag$)
($tag$% ELSE %$tag$)
($tag$%|loc%$tag$)Reply to($tag$%END%$tag$)
<input id="to_sender" type="radio" name="to"
value="$FROMADDRNAME:J$ $FROMADDRDOMAIN$"
($tag$% IF list_conf.reply_to_header.value == 'sender' %$tag$)
checked
($tag$%END%$tag$) />
<label class="inlineLabel" for="to_sender">($tag$%|loc%$tag$)sender($tag$%END%$tag$)</label>
<input id="to_list" type="radio" name="to"
value="($tag$% list %$tag$) ($tag$% list_conf.host %$tag$)"
($tag$% IF list_conf.reply_to_header.value == 'list' %$tag$)
checked
($tag$%END%$tag$) />
<label class="inlineLabel" for="to_list">($tag$%|loc%$tag$)list($tag$%END%$tag$)</label>
<input id="to_both" type="radio" name="to"
value="$FROMADDRNAME:J$ $FROMADDRDOMAIN$,($tag$% list %$tag$) ($tag$% list_conf.host %$tag$)"
($tag$% IF list_conf.reply_to_header.value == 'all' %$tag$)
checked
($tag$%END%$tag$) />
<label class="inlineLabel" for="to_both">($tag$%|loc%$tag$)both($tag$%END%$tag$)</label>
($tag$% END %$tag$)
<input class="MainMenuLinks" type="submit" name="action_compose_mail" value="($tag$%|loc%$tag$)Reply($tag$%END%$tag$)" /><br />
<input class="MainMenuLinks" type="submit" name="action_send_me" value="($tag$%|loc(user.email)%$tag$)send it back to %1($tag$%END%$tag$)" /><br />
<input type="hidden" name="yyyy" value="$yyyy$" />
<input type="hidden" name="month" value="$mois$" />
<input type="hidden" name="msgid" value="$MSGID$" />
<input type="hidden" name="action" value="" />
($tag$% IF user.email == '$FROMADDRNAME:J$@$FROMADDRDOMAIN$' || is_owner %$tag$)
<input class="MainMenuLinks" type="submit" name="action_remove_arc" value="($tag$%|loc%$tag$)tag this mail for deletion($tag$%END%$tag$)" onClick="return request_confirm('($tag$%|loc%$tag$)Do you really want to delete this message ?($tag$%END%$tag$)')" />
($tag$% END %$tag$)
($tag$% IF is_owner %$tag$)
<br /><input class="MainMenuLinks" type="submit" name="action_view_source" value="($tag$%|loc%$tag$)view source($tag$%END%$tag$)" />
($tag$% END %$tag$)
($tag$% IF listconf.tracking.delivery_status_notification == 'on' || listconf.tracking.message_delivery_notification == 'on_demand' || listconf.tracking.message_delivery_notification == 'on' %$tag$)
($tag$% IF may_tracking %$tag$)
<input class="MainMenuLinks" type="submit" name="action_tracking" value="($tag$%|loc%$tag$)mail tracking($tag$%END%$tag$)" />
($tag$% END %$tag$)
($tag$% END %$tag$)
</form>
</span>
($tag$% END %$tag$)
<div class="block">
</SUBJECTHEADER>
<!-- Message itself -->
<!-- Do not display the following header -->
<EXCS Override>
content-
errors-to
forward
lines
mime-
message-id
nntp-
originator
path
precedence
received
replied
return-path
status
via
x-
sender
list-help
list-owner
list-post
list-subscribe
list-unsubscribe
in-reply-to
delivered-to
references
reply-to
thread-
User-agent
Mail-followup-to
Dkim-signature
</EXCS>
<!-- Field order in message header -->
<FIELDORDER>
from
to
cc
subject
date
-extra-
</FIELDORDER>
<LABELSTYLES>
From:strong
To:strong
Subject:strong
-default-:strong
</LABELSTYLES>
<TSLICELEVELS>
7
</TSLICELEVELS>
<TSLICE>
10:10
</TSLICE>
<TSLICEBEG>
<UL>
</TSLICEBEG>
<TSLICETOPBEGINCUR>
<LI><STRONG>$SUBJECTNA$</STRONG>, <EM>$FROMNAME$, ($tag$%|locdt("$YYYYMMDD$")%$tag$)%m/%d/%Y($tag$%END%$tag$)</EM>
</TSLICETOPBEGINCUR>
<TSLICELITXTCUR>
<LI><STRONG>$SUBJECTNA$</STRONG>, <EM>$FROMNAME$, ($tag$%|locdt("$YYYYMMDD$")%$tag$)%m/%d/%Y($tag$%END%$tag$)</EM>
</TSLICELITXTCUR>
<TSLICESINGLETXTCUR>
<LI><STRONG>$SUBJECTNA$</STRONG>, <EM>$FROMNAME$, ($tag$%|locdt("$YYYYMMDD$")%$tag$)%m/%d/%Y($tag$%END%$tag$)</EM>
</TSLICESINGLETXTCUR>
<TSLICEEND>
</UL>
</TSLICEEND>
<!-- Buttons definition -->
<PREVBUTTON>
<a class="ArcMenuLinks" href="$PREVMSG$"><</a>
</PREVBUTTON>
<PREVBUTTONIA>
<a class="ArcMenuLinksInactive"><</a>
</PREVBUTTONIA>
<NEXTBUTTON>
<a class="ArcMenuLinks" href="$NEXTMSG$">></a>
</NEXTBUTTON>
<NEXTBUTTONIA>
<a class="ArcMenuLinksInactive">></a>
</NEXTBUTTONIA>
<TPREVBUTTON>
<a class="ArcMenuLinks" href="$TPREVMSG$"><</a>
</TPREVBUTTON>
<TPREVBUTTONIA>
<a class="ArcMenuLinksInactive"><</a>
</TPREVBUTTONIA>
<TNEXTBUTTON>
<a class="ArcMenuLinks" href="$TNEXTMSG$">></a>
</TNEXTBUTTON>
<TNEXTBUTTONIA>
<a class="ArcMenuLinksInactive">></a>
</TNEXTBUTTONIA>
<!-- ============================================================== -->
<!-- Other Resources -->
<!-- ============================================================== -->
<DAYBEGIN>
<LI><STRONG>($tag$%|locdt("$YYYYMMDD$")%$tag$)%y/%m/%d($tag$%END%$tag$)</STRONG>
<UL>
</DAYBEGIN>
<DAYEND>
</UL>
</LI>
</DAYEND>
<WEEKDAYS>
($tag$%|loc%$tag$)Sunday:Monday:Tuesday:Wednesday:Thursday:Friday:Saturday($tag$%END%$tag$)
</WEEKDAYS>
($tag$% IF lang == 'cs' %$tag$)
<WEEKDAYSABR>
Ne:Po:Út:St:Čt:Pá:So
</WEEKDAYSABR>
($tag$% ELSIF lang == 'hu' %$tag$)
<WEEKDAYSABR>
V:H:K:Sz:Cs:P:Szo
</WEEKDAYSABR>
($tag$% ELSIF lang == 'et' %$tag$)
<WEEKDAYSABR>
P:M:T:K:N:R:L
</WEEKDAYSABR>
($tag$% ELSE %$tag$)
<WEEKDAYSABR>
($tag$%|loc%$tag$)Sun:Mon:Tue:Wed:Thu:Fri:Sat($tag$%END%$tag$)
</WEEKDAYSABR>
($tag$% END %$tag$)
<MONTHS>
($tag$%|loc%$tag$)January:February:March:April:May:June:July:August:September:October:November:December($tag$%END%$tag$)
</MONTHS>
($tag$% IF lang == 'cs' %$tag$)
<MONTHSABR>
Led:Úno:Bře:Dub:Kvě:Čern:Červ:Srp:Zář:Říj:List:Pro
</MONTHSABR>
($tag$% ELSIF lang == 'hu' %$tag$)
<MONTHSABR>
Jan:Feb:Már:Ápr:Máj:Jún:Júl:Aug:Szep:Okt:Nov:Dec
</MONTHSABR>
($tag$% ELSIF lang == 'et' %$tag$)
<MONTHSABR>
Jan:Veeb:Mär:Apr:Mai:Juun:Juul:Aug:Sep:Okt:Nov:Dets
</MONTHSABR>
($tag$% ELSE %$tag$)
<MONTHSABR>
($tag$%|loc%$tag$)Jan:Feb:Mar:Apr:May:Jun:Jul:Aug:Sep:Oct:Nov:Dec($tag$%END%$tag$)
</MONTHSABR>
($tag$% END %$tag$)
($tag$% IF lang == 'cs' %$tag$)
<UseLocalTime>
<MSGLOCALDATEFMT>
%d. %B. %Y %H:%M
</MSGLOCALDATEFMT>
<LOCALDATEFMT>
%d. %B. %Y %H:%M
</LOCALDATEFMT>
($tag$% ELSIF lang == 'hu' %$tag$)
<UseLocalTime>
<MSGLOCALDATEFMT>
%Y. %B %d., %A %H:%M
</MSGLOCALDATEFMT>
<LOCALDATEFMT>
%Y. %B %d., %A %H:%M
</LOCALDATEFMT>
($tag$% ELSIF lang == 'et' %$tag$)
<UseLocalTime>
<MSGLOCALDATEFMT>
%Y. %B %d., %A %H:%M
</MSGLOCALDATEFMT>
<LOCALDATEFMT>
%Y. %B %d., %A %H:%M
</LOCALDATEFMT>
($tag$% ELSE %$tag$)
<MsgLocalDateFmt>
%A %d %B %Y
</MsgLocalDateFmt>
($tag$% END %$tag$)