Versions Compared

Key

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

...

If the email should be configured please open the file scheduler_mail.xsl and add this template

...

Code Block
languagexml
collapsetrue
   <xsl:template match="/scheduler_event [@severity='error' and @event='task_step_too_short']" mode="custom-subject">

...

        <subject>

...


        <subject>
            <xsl:if test="$lang='de'">[warning] Task lief kürzer als die erwartete minimale Dauer</xsl:if>

...


            <xsl:if test="$lang='en'">[warning] Task runs shorter than the expected duration</xsl:if>

...


        </subject>

...


    </xsl:

...

template>   
     <xsl:template match="/scheduler_event [@severity='error' and @event='task_step_too_short']" mode="custom-message">

...


         <xsl:if test="$lang='de'">Task lief kürzer als die erwartete minimale Dauer.</xsl:if>

...


         <xsl:if test="$lang='en'">Task runs shorter than the expected duration.</xsl:if>

...


    </xsl:template>

...

Mails for jobs that run longer than an expected value

...