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 "Nigel Leck (JIRA)" <se...@james.apache.org> on 2014/02/17 07:31:27 UTC

[jira] [Commented] (JAMES-1369) domains names in James 3 Beta 3 are case sensitive. Used the matcher RecipientToLowerCase and it only converts the local part (user name) to lower case.

    [ https://issues.apache.org/jira/browse/JAMES-1369?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13902994#comment-13902994 ] 

Nigel Leck commented on JAMES-1369:
-----------------------------------

To get the server to receive emails with mixed case I needed hack this line. 

    /**
     * @see org.apache.james.protocols.smtp.core.AbstractAuthRequiredToRelayRcptHook#isLocalDomain(java.lang.String)
     */
    protected boolean isLocalDomain(String domain) {
        try {
            return domains.containsDomain(domain.toLowerCase());
        } catch (DomainListException e) {
            return false;
        }
    }

> domains names in James 3 Beta 3 are case sensitive. Used the matcher RecipientToLowerCase and it only converts the local part (user name) to lower case. 
> ---------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: JAMES-1369
>                 URL: https://issues.apache.org/jira/browse/JAMES-1369
>             Project: James Server
>          Issue Type: Improvement
>          Components: Matchers/Mailets (bundled)
>    Affects Versions: 3.0-beta3
>         Environment: Linux
>            Reporter: Phanidhar
>            Assignee: Eric Charles
>




--
This message was sent by Atlassian JIRA
(v6.1.5#6160)

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