Skip to main content
ExLibris
  • Subscribe by RSS
  • Ex Libris Knowledge Center

    How to add the producer password to the "New Password has been generated" email

    • Product: Rosetta
    • Product Version: 5.2

     

    When we update a producer password Rosetta sends en email to the user with the new password.

    If you are not using the OOTB email configuration (available at Home > Deposits > Advanced tools > Email configuration) and you edited the ../xsl/emails/EmailUserNewPasswordIndProd.xsl xsl before the upgrade or installation of SP 5.2 then you will need to add the password to the xsl manually.

    To do that, please follow the steps:

    1. Go to Home > Deposits > Advanced tools > Email configuration

    2. Click "Edit" on the ../xsl/emails/EmailUserNewPasswordIndProd.xsl

    3. In the password section in the xsl change <xsl:value-of select="./password" /> to <xsl:value-of select="//email-data/additional-fields/pass" />

     

    From:
                <tr>
                  <th>
                    <xsl:value-of select="java:getDescription(&apos;UILabels&apos;,$language, &apos;user.email.password&apos;)" />
                  </th>
                  <td colspan="3">
                    <strong>
                      <xsl:value-of select="./password" />
                    </strong>
                  </td>
                </tr>
    

     

    To:
                <tr>
                  <th>
                    <xsl:value-of select="java:getDescription(&apos;UILabels&apos;,$language, &apos;user.email.password&apos;)" />
                  </th>
                  <td colspan="3">
                    <strong>
                      <xsl:value-of select="//email-data/additional-fields/pass" />
                    </strong>
                  </td>
                </tr>
    

     

     


    • Article last edited: 09-Feb-2017