--- MailAddress.java.origin Wed Feb 26 10:39:29 2003 +++ MailAddress.java Wed Feb 26 10:40:13 2003 @@ -289,7 +289,7 @@ // 127) // ::= the space character (ASCII code 32) char c = address.charAt(pos); - if (c <= 31 || c == 127 || c == ' ') { + if (c <= 31 || c > 127 || c == ' ') { throw new ParseException("Invalid character in local-part (user account) at position " + (pos + 1)); } for (int i = 0; i < SPECIAL.length; i++) {