Changeset 162
- Timestamp:
- 07/10/07 08:26:18 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/jsmtpd/src/org/jsmtpd/core/mail/EmailAddress.java
r160 r162 59 59 mailPart=input.trim(); 60 60 61 if (!mailPart.matches("^[_A-Za-z0-9-+= ]+(\\.[_A-Za-z0-9-+=]+)*@[A-Za-z0-9-]+(\\.[A-Za-z0-9-]+)*$"))61 if (!mailPart.matches("^[_A-Za-z0-9-+=*]+(\\.[_A-Za-z0-9-+=*]+)*@[A-Za-z0-9-]+(\\.[A-Za-z0-9-]+)*$")) 62 62 throw new InvalidAddress(); 63 63
