deadHosts
[org.ibex.mail.git] / src / org / ibex / mail / protocol / SMTP.java
index 0fbc478..90fb2ec 100644 (file)
@@ -205,7 +205,7 @@ public class SMTP {
 
     public static class Outgoing extends Thread {
 
-        private static final HashSet deadHosts = new HashSet();
+        private static final HashMap deadHosts = new HashMap();
         public static void accept(Message m) throws IOException {
             if (m == null) { Log.warn(Outgoing.class, "attempted to accept(null)"); return; }
             String traces = m.headers.get("Received");