| Crates.io | mxdns |
| lib.rs | mxdns |
| version | 0.4.1 |
| created_at | 2019-01-19 09:52:45.862782+00 |
| updated_at | 2024-02-10 12:45:54.60271+00 |
| description | DNS utilities for SMTP servers |
| homepage | |
| repository | https://code.alienscience.org/alienscience/mailin |
| max_upload_size | |
| id | 109491 |
| size | 17,951 |
DNS utilities for mail servers. Currently this crate supports reverse DNS lookups and lookups against dns based blocklists.
use mxdns::{MxDns, FCrDNS};
let blocklists = vec!["zen.spamhaus.org.","dnsbl-1.uceprotect.net."];
let mxdns = MxDns::new(blocklists).unwrap();
// Check if an IP Address is present on blocklists
let is_blocked = mxdns.is_blocked([127, 0, 0, 2]).unwrap();
assert!(is_blocked);
// Reverse lookup a DNS address
let rdns = mxdns.reverse_dns([193, 25, 101, 5]).unwrap().unwrap();
assert_eq!(rdns, "mail.alienscience.org.");
// Check that the ip resolved from the name obtained by the reverse dns matches the ip
if let Ok(FCrDNS::Confirmed(_domain)) = mxdns.fcrdns([193, 25, 101, 5]) {
// _domain is Confirmed
}