mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

al_xipe
20.30.2007 b2c91328da2b61df8d7a6bee6ba6aefa2752af17
1. fix authentication issue for send-mail targets
1 files modified
13 ■■■■ changed files
opends/tests/functional-tests/staf-installer.xml 13 ●●●● patch | view | raw | blame | history
opends/tests/functional-tests/staf-installer.xml
@@ -624,8 +624,16 @@
  </target>
  <target name="send-mail" if="email.send">
    <condition property="email.send.auth">
      <length string="${email.server.user}" when="greater" length="0"/>
    <condition property="email.send.noauth">
      <or>
        <not>
          <isset property="email.server.user"/>
        </not>
        <not>
          <length string="${email.server.user}" when="greater"
                  trim="true" length="0"/>
        </not>
      </or>
    </condition>
    <antcall target="send-mail-noauth"/>
    <antcall target="send-mail-withauth"/>
@@ -955,4 +963,5 @@
  <target name="properties">
    <echoproperties/>
  </target>
</project>