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 bu...@apache.org on 2002/02/25 18:15:38 UTC

DO NOT REPLY [Bug 6340] - SMTP AUTH with will not work

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6340>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6340

SMTP AUTH with <challenge> will not work





------- Additional Comments From giles@leafinternet.com  2002-02-25 17:15 -------
I've tried the following fix which appears to work - you may wish to test more 
before incorporating into the build. It's just an additional else if clause:

if (command.indexOf(" ")>0){
            argument = command.substring(command.indexOf(" ")+1);
            command = command.substring(0,command.indexOf(" "));
            if(argument.indexOf(":")>0){
                argument1 = argument.substring(argument.indexOf(":")+1);
                argument = argument.substring(0,argument.indexOf(":"));
        }
            else if (argument.indexOf(" ") > 0){
                argument1 = argument.substring(argument.indexOf(" ")+1);
                argument = argument.substring(0,argument.indexOf(" "));
            }                
        }

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>