X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fmail%2FAddress.java;h=1197a308e0810c543f7cdbbcd132b3cfb696d664;hb=1fceeb3f8780b18f3def747fccdf8e4b8ac8d55d;hp=92bdbc89e2cfe18ac708d9a8879ceec7f5b93052;hpb=3492f56637223c93d748aef93888bc107e8e1252;p=org.ibex.mail.git diff --git a/src/org/ibex/mail/Address.java b/src/org/ibex/mail/Address.java index 92bdbc8..1197a30 100644 --- a/src/org/ibex/mail/Address.java +++ b/src/org/ibex/mail/Address.java @@ -1,3 +1,7 @@ +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.mail; import org.ibex.crypto.*; import org.ibex.js.*; @@ -7,25 +11,75 @@ import java.util.*; import java.net.*; import java.io.*; -public class Address extends JSReflection { +// FIXME this should be more forgiving +public class Address extends JSReflection implements Serializable { public final String user; public final String host; public final String description; + public static Address parse(String s) { try { return s==null?null:new Address(s); } catch (Malformed _) { return null; } } public Address(String user, String host, String description) {this.user=user;this.host=host;this.description=description;} - public Address(String s) throws Address.Malformed { - s = s.trim(); - if (s.indexOf('<') != -1) { - if (s.indexOf('>') == -1) { throw new Malformed("found open-angle-bracket (<) but not close-angle-bracket (>)"); } - description = s.substring(0, s.indexOf('<')) + s.substring(s.indexOf('>') + 1); - s = s.substring(s.indexOf('<') + 1, s.indexOf('>')); - } else { - description = ""; + public Address(String s0) throws Address.Malformed { + boolean good = false; + try { + String s = s0.trim(); + if (s.indexOf('<') == -1) { + if (s.indexOf(' ') == -1) { + description = ""; + } else { + description = s.substring(s.indexOf(' ')).trim(); + s = s.substring(0, s.indexOf(' ')); + } + } else { + if (s.indexOf('>') == -1) { throw new Malformed("found open-angle-bracket (<) but not close-angle-bracket (>)"); } + description = s.substring(0, s.indexOf('<')) + s.substring(s.indexOf('>') + 1); + s = s.substring(s.indexOf('<') + 1, s.indexOf('>')); + } + if (s.trim().length() == 0) { + user = null; + host = null; + good = true; + } else if (s.indexOf('@') == -1) { throw new Malformed("no @-sign in email address \""+s0+"\""); + } else { + user = s.substring(0, s.indexOf('@')); + host = s.substring(s.indexOf('@')+1); + good = true; + } + } finally { + if (!good) Log.error(Address.class, "problem parsing: \""+s0+"\""); } - if (s.indexOf('@') == -1) { throw new Malformed("no @-sign in email address"); } - user = s.substring(0, s.indexOf('@')); - host = s.substring(s.indexOf('@')+1); } + public String toString() { return (user == null && host == null) ? "" : (user + "@" + host); } public String coerceToString() { return toString(); } - public String toString() { return description.equals("") ? (user +"@"+ host) : description+" <" + user +"@"+ host + ">"; } - public static class Malformed extends MailException.Malformed { public Malformed(String s) { super(s); } } + public String toString(boolean desc) { + return desc && description != null && description.length() > 0 ? (description+" <" + toString() + ">") : toString(); } + public static class Malformed extends Message.Malformed { public Malformed(String s) { super(s); } } + + /** in case of flaky DNS */ + private static HashSet local = new HashSet(); + public boolean isLocal() { + synchronized(local) { + if (local.contains(host)) return true; + InetAddress[] mx = SMTP.getMailExchangerIPs(host); + for(int i=0; i