You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by "Andrew Ben (JIRA)" <se...@james.apache.org> on 2015/01/07 20:39:35 UTC

[jira] [Created] (JAMES-1565) Domain list is case sensitive

Andrew Ben created JAMES-1565:
---------------------------------

             Summary: Domain list is case sensitive
                 Key: JAMES-1565
                 URL: https://issues.apache.org/jira/browse/JAMES-1565
             Project: James Server
          Issue Type: Bug
    Affects Versions: 3.0-beta4
            Reporter: Andrew Ben


There is an issue with Exchange 365 (and probably other servers) that do not convert recipient name to lower case. So if my domainlist.conf file is as following:
<domainlist class="org.apache.james.domainlist.xml.XMLDomainList">
   <domainnames>
       <domainname>abc.com</domainname>
       <domainname>def.com</domainname>
   </domainnames>
   <autodetect>true</autodetect>
   <autodetectIP>true</autodetectIP>
</domainlist>

and user send email to user@ABC.com the email is rejected with 
Remote Server returned '530 5.7.1 Authentication Required'

I think the issue can be fixed by comparing domain converted to lower case in the org.apache.james.domainlist.xml.XMLDomainList::containsDomain as domains from domainlist.conf file are stored converted to lower case.

public boolean containsDomain(String domains) throws DomainListException {
        return domainNames.contains(domains);
}





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org