856857858859860861862863864865866
.append( "The inbox for user " ) .append( username ) .append( " was not found on this server." ); throw new MessagingException( errorBuffer.toString() ); } userInbox.store( mailImpl ); } } /** * Return the major version number for the server
907908909910911912913914915916917
863864865866867868869870871872873
225226227228229230231232233234235
StringBuffer errorBuffer = new StringBuffer(128).append( "The repository for user ").append(username).append( " was not found on this server."); throw new MessagingException(errorBuffer.toString()); } userInbox.store(mail); } finally { mail.dispose(); } }
223224225226227228229230231232233