Variable substitution doesn't work correctly if the variable is an empty string. Example from a logback.xml file:
<property name="MY_PASSWORD" value=""/>
...
<password>$
{MY_PASSWORD}
</password>
The substitution in the password element didn't work correctly. Using an empty password element instead of variable substitution solved the problem:
<password></password>
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira