ut1_cat.RdLooks a domain up in the University of Toulouse (UT1) blacklists, the maintained successor to Shallalist. Unlike [shalla_cat()] and [dmoz_cat()], which answer from lists that stopped publishing in 2022 and 2017, this list is updated continuously — so `source_last_published` is the date of the copy you downloaded rather than a constant.
ut1_cat(domains = NULL, use_file = NULL)A tibble with `domain_name`, `ut1_category`, `ut1_usage` (`"black"` where UT1 maintains the list for blocking, `"white"` where it maintains it for allowing — both describe content) and `source_last_published`, the date the list was published.
The categories are UT1's own (`drogue`, `publicite`, `tricheur`, `agressif`, ...) and are reported verbatim. They do not share names with Shallalist's, and mapping one onto the other would discard exactly the distinctions the two taxonomies disagree about.
[get_ut1_data()] to download the data, [source_vintage()] for how this source compares with the discontinued ones.
if (FALSE) { # \dontrun{
get_ut1_data()
ut1_cat(domains = c("example.com", "wikipedia.org"))
# what a maintained list says versus one that stopped in 2022
merge(ut1_cat("example.com"), shalla_cat("example.com"), by = "domain_name")
} # }