Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

Problem

  • the file extension of log files attached at mails is .log per default
  • in some environments (such as Blackberry) this extension could not assign to an application

Solution

  • See "How to configure an e-mail service" to change the JobScheduler configuration if necessary.
  • Change the sytlesheet for JobScheduler e-mail service to define a different attachment name for log files

from

Code Block

<?xml version='1.0' encoding='iso-8859-1' ?>
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version   = "1.0">
    
   ...

   <xsl:template match="/scheduler_event">
      ...
      <xsl:copy-of select="mail/body/* [ not( text ) ]" />
      ...
   </xsl:template>

</xsl:stylesheet>

to

Code Block

<?xml version='1.0' encoding='iso-8859-1' ?>
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version   = "1.0">
    
   ...

   <xsl:template match="/scheduler_event">
      ...
      <xsl:copy-of select="mail/body/* [ not(text) and not (//file) ]" />
      
      <xsl:for-each select="mail/body/file" >
        <xsl:variable name='filename'>
          <xsl:choose>
            <xsl:when test="contains(@path, '.log')">
              <xsl:value-of select="concat(substring-before(@path,'.log'),'.txt')" />
            </xsl:when>
            <xsl:otherwise>
              <xsl:value-of select="@path" />
            </xsl:otherwise>
          </xsl:choose>                  
        </xsl:variable>
        <xsl:element name="{name()}">
          <xsl:copy-of select="@*" />
          <xsl:attribute name="mail_filename">
            <xsl:value-of select="$filename" />
          </xsl:attribute>
        </xsl:element>
      </xsl:for-each>
      ...
   </xsl:template>

</xsl:stylesheet>

...