Andrei,

Another alternative to your:

  <mailet ...>
    <addSubject enable="true" truncate="10"/>
  </mailet>

could be:

  <mailet ...>
    <mailet-config:addSubject enable="true" truncate="10"/>
  </mailet>

Similarly, my:

  <mailet matcher="Foo[=cond]" class="Bar">
    <matcher-config>
      <tagname>value</tagname>
    </matcher-config>
    <mailet-config>
      <tagname>value</tagname>
    </mailet-config>
  </mailet>

could be:

  <mailet matcher="Foo[=cond]" class="Bar">
    <matcher-config:tagname>value</matcher-config:tagname>
    <mailet-config:tagname>value</mailet-config:tagname>
  </mailet>

Unqualified tags would be assumed, for compatibility with previous releases
of James, to be part of the mailet configuration.

        --- Noel


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to