Matthieu Baechler created JAMES-1605:
----------------------------------------
Summary: AbstractRecipientRewriteTable.mapAddress doesn't respect
domainAlias ordering
Key: JAMES-1605
URL: https://issues.apache.org/jira/browse/JAMES-1605
Project: James Server
Issue Type: Bug
Reporter: Matthieu Baechler
This code snippet seems to tries to putting aliasdomain entries in front of the
list while keeping entries original order.
{code}
while (mapIt.hasNext()) {
int i = 0;
String mapping = mapIt.next();
if
(mapping.startsWith(RecipientRewriteTable.ALIASDOMAIN_PREFIX)) {
col.add(i, mapping);
i++;
} else {
col.add(mapping);
}
}
{code}
I looks like no test covers this feature because it actually mess with
aliasdomain ordering (the 'i' counter is reset for every loop)
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]