diff -r bb6990c0dd1a -r efce4ec25564 org/sonews/mlgw/Dispatcher.java --- a/org/sonews/mlgw/Dispatcher.java Thu Aug 20 14:31:19 2009 +0200 +++ b/org/sonews/mlgw/Dispatcher.java Thu Aug 20 16:57:38 2009 +0200 @@ -111,7 +111,7 @@ // listPost[0] is of form "" listPost[0] = chunkListPost(listPost[0]); listPostAddr = new InternetAddress(listPost[0], false); - groups = StorageManager.current().getGroupsForList(listPostAddr); + groups = StorageManager.current().getGroupsForList(listPostAddr.getAddress()); } else if(fallback) { @@ -123,7 +123,8 @@ { if(toa instanceof InternetAddress) { - List g = StorageManager.current().getGroupsForList((InternetAddress) toa); + List g = StorageManager.current() + .getGroupsForList(((InternetAddress)toa).getAddress()); groups.addAll(g); } }