list = manager.getPrivacyList(from.getNode(), listName);
}
if (list != null) {
// Add the privacy list to the result
childElement = result.setChildElement("query", "jabber:iq:privacy");
childElement.add(list.asElement());
}
else {
// List not found
result.setError(PacketError.Condition.item_not_found);
}