ec61fba4fc329ad1d949ab011636fb010a9284ab
[exim-website.git] / templates / web / index.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5         <!-- WRAPPER -->
6                 <xsl:import href="../wrapper.xsl"/>
7                 <xsl:template match="/"> <xsl:apply-imports/> </xsl:template>
8
9                 <xsl:variable name="docroot" select="'.'"/>
10
11         <!-- Title -->
12                 <xsl:variable name="html.head.title" select="'Exim Internet Mailer'"/>
13
14         <xsl:variable name="html.head.append">
15
16                 <!-- CSS -->
17                         <link rel="stylesheet" type="text/css" href="{$staticroot}/css/index.css"/>
18
19                 <!-- Canonical -->
20                         <link rel="canonical" href="https://www.exim.org/"/>
21
22         </xsl:variable>
23
24         <!-- CONTENT -->
25                 <xsl:template name="content">
26
27                         <h2>Latest Version: <xsl:value-of select="/content/current_version"/></h2>
28
29                 <!-- Summary -->
30                         <p id="summary">
31                                 <a href="https://www.exim.org/">
32                                         <img src="i/exim-blue-ld-87x65.png" alt="Exim Logo" width="87" height="65"/>
33                                 </a>
34                                 <xsl:text>Exim is a message transfer agent (MTA) originally developed at the </xsl:text>
35                                 <a href="https://www.cam.ac.uk/" title="University of Cambridge Home page">University of Cambridge</a>
36                                 <xsl:text> for use on Unix systems connected to the Internet. It is freely available under the terms of the </xsl:text>
37                                 <a href="https://www.gnu.org/licenses/gpl.html" title="GPL Information">GNU General Public Licence</a>
38                                 <xsl:text>. In style it is similar to Smail 3,
39                                 but its facilities are more general. There is a great deal of flexibility in the way mail can be routed, and there are extensive facilities for checking incoming mail. Exim can be installed in place of </xsl:text>
40                                 <a href="https://www.proofpoint.com/us/sendmail-open-source" title="Sendmail home page" rel="nofollow">Sendmail</a>
41                                 <xsl:text>, although the configuration of Exim is quite different.</xsl:text>
42                         </p>
43
44       <!-- Version Information -->
45          <p id="obsolete_version_info"><xsl:text>All versions of Exim previous to version </xsl:text><xsl:value-of select="/content/current_version"/><xsl:text> are now obsolete. The last 3.x release was 3.36. It is twenty years obsolete and should not be used.</xsl:text>
46          </p>
47
48          <p id="version_info">
49             <xsl:text>The current version is </xsl:text> <xsl:value-of select="/content/current_version"/><xsl:text>.</xsl:text> <br/>
50             <xsl:text>If necessary, we publish maintenance releases. These releases are mainly intended for package maintainers.</xsl:text>
51
52             <!--
53             This is a security release.  See <a href="{$staticroot}/doc/security/CVE-2020-qualys">CVE-2020-qualys</a> or
54             <a href="https://www.qualys.com/2021/05/04/21nails/21nails.txt">at the reporter's (Qualys) site</a>.
55             -->
56
57          </p>
58
59          <p id="beta_version_info">
60             <xsl:text>There may be beta versions available from the ftp sites in the Testing directory. Many people are using these without problems, but they are not recommended unless you are willing to work with beta software.</xsl:text>
61          </p>
62
63                 <!-- Book Information -->
64
65                         <p id="book_info">
66                                 <a href="https://www.uit.co.uk/all-books/the-exim-smtp-mail-server.html">
67                                         <img src="i/exim-book.png" width="74" height="100"/>
68                                 </a>
69                                 <xsl:text>You may wish to purchase </xsl:text>
70                                 <a href="https://www.uit.co.uk/all-books/the-exim-smtp-mail-server.html">The Exim SMTP Mail Server</a>
71                                 <xsl:text> book, written by the original author of Exim, </xsl:text>
72                                 <a href="https://en.wikipedia.org/wiki/Philip_Hazel">Philip Hazel</a>
73                                 <xsl:text>.</xsl:text>
74                         </p>
75
76          <!-- sponsor information -->
77          <div id="sponsors">
78             <xsl:text>The following organizations provide services which help the Exim project:</xsl:text>
79             <ul id="sponsor_list">
80                <li class="sponsor">
81                   <a href="https://www.mythic-beasts.com/">
82                      <xsl:text>Mythic Beasts</xsl:text>
83                   </a>
84                   <xsl:text> provide us with a VM for running the buildfarm, for the testsuite.</xsl:text>
85                </li>
86                <li class="sponsor">
87                   <a href="https://www.macstadium.com/">
88                      <img src="i/macstadium-150x61.png" width="150" height="61" alt="MacStadium" class="sponsor_logo"/>
89                      <xsl:text>MacStadium</xsl:text>
90                   </a>
91                   <xsl:text> provide us a Mac Mini for our buildfarm, keeping macOS supported.</xsl:text>
92                </li>
93                <li class="sponsor">
94                   <a href="https://schlittermann.de/">
95                      <xsl:text>Schlittermann - Internet &amp; Unix Support</xsl:text>
96                   </a>
97                   <xsl:text> provide us resources for hosting and administering the exim.org infrastructure.</xsl:text>
98                </li>
99             </ul>
100          </div>
101
102                 </xsl:template>
103
104 </xsl:stylesheet>