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
|
<?xml version="1.0"?>
<!--
-
- $Id$
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2018 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:variable name="content_transfer_encoding">8bit</xsl:variable>
<xsl:variable name="charset_def">windows-1251</xsl:variable>
<xsl:variable name="charset">
<xsl:choose>
<xsl:when test="/message/charset != ''">
<xsl:value-of select="/message/charset"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$charset_def"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- ====================================================================================== -->
<xsl:template match="message">Content-Type: <xsl:call-template name="content_type"/>;
<xsl:call-template name="content_transfer_encoding"/>;
<xsl:call-template name="mbody"/>
</xsl:template>
<!-- ====================================================================================== -->
<xsl:template name="content_type">
<xsl:choose>
<xsl:when test="count(attachments) > 0">multipart/mixed</xsl:when>
<xsl:otherwise>
<xsl:call-template name="mime_type"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- BODY ===================================================================== -->
<xsl:template name="mbody">
<xsl:choose>
<xsl:when test="count(attachments) > 0">
<xsl:call-template name="multipart"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="mbody/mtext"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- BODY ===================================================================== -->
<xsl:template name="multipart">
This is a multi-part message in MIME format.
--<xsl:value-of select="boundary"/>
Content-Type: <xsl:call-template name="mime_type"/>;
charset="<xsl:value-of select="$charset"/>"
Content-Transfer-Encoding: <xsl:value-of select="$content_transfer_encoding"/>
<xsl:text>
</xsl:text>
<xsl:value-of select="mbody/mtext"/>
--<xsl:value-of select="boundary"/>
<xsl:apply-templates select="attachments/attachment"/>--
</xsl:template>
<!-- ATT ===================================================================== -->
<xsl:template match="attachments/attachment">
Content-Type: <xsl:value-of select="mime_type"/>;
name="<xsl:value-of select="pname"/>"
Content-Transfer-Encoding: <xsl:choose>
<xsl:when test="type_id > 19999">base64</xsl:when>
<xsl:otherwise>8 bit</xsl:otherwise>
</xsl:choose>
Content-Disposition: attachment;
<xsl:choose>
<xsl:when test="string-length(content_id) > 0">Content-ID: <<xsl:value-of select="content_id"/>></xsl:when>
<xsl:otherwise> filename="<xsl:value-of select="pname"/>"</xsl:otherwise>
</xsl:choose>
<xsl:text>
</xsl:text>
<xsl:value-of select="bdata"/>
--<xsl:value-of select="//boundary"/>
</xsl:template>
<!-- MIME-TYPE ============================================================== -->
<xsl:template name="mime_type">
<xsl:choose>
<xsl:when test="type_id = 10110">text/html</xsl:when>
<xsl:when test="type_id = 10100">text/plain</xsl:when>
<xsl:when test="mime_type = 'html'">text/html</xsl:when>
<xsl:when test="mime_type = 'text'">text/plain</xsl:when>
<xsl:when test="mime_type = 'txt'">text/plain</xsl:when>
<xsl:otherwise>
<xsl:value-of select="mime_type"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- CONTENT_TRANSFER_ENCODING ============================================================== -->
<xsl:template name="content_transfer_encoding">
<xsl:choose>
<xsl:when test="count(attachments) = 0"> charset="<xsl:value-of select="$charset"/>"
Content-Transfer-Encoding: <xsl:value-of select="$content_transfer_encoding"/>
</xsl:when>
<xsl:otherwise> boundary="<xsl:value-of select="boundary"/>"</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Ref ID ============================================================== -->
<xsl:template match="ref_id">
<xsl:if test="string-length(.) > 0">
References: <<xsl:value-of select="."/>></xsl:if>
</xsl:template>
</xsl:stylesheet>
|