log.info("Reading rbl list from {}", url);
File file = new File(url.getFile());
log.info(" file is {}", file);
try {
RblFile rbl = new RblFile(file);
List<RBListEntry> list = rbl.search("*");
for (RBListEntry entry : list) {
log.info("{}", entry);
log.info(" Entry for {}", entry.getName());
log.info(" Created at {}", new Date(entry.getCreated()));
log.info(" Expires in {}", new Date(entry.getExpiresAt()));