Is us.af.mil a Disposable Email?
Whitelistedus.af.mil is a verified legitimate email provider. Emails from this domain are safe to accept.
Details
- Status
- whitelisted
- Added
- 2026-04-11
- Last Checked
- 2026-06-24
- Reason
- domain is limited to us military
API Playground
Check us.af.mil programmatically — pick your language, copy, run. No authentication required.
curl https://trashmail-blacklist.org/check/json/us.af.mil
import requests
r = requests.get("https://trashmail-blacklist.org/check/json/us.af.mil")
data = r.json()
print(data["status"]) # blacklisted / whitelisted / unknown
const r = await fetch("https://trashmail-blacklist.org/check/json/us.af.mil");
const data = await r.json();
console.log(data.status); // blacklisted / whitelisted / unknown
<?php
$json = file_get_contents("https://trashmail-blacklist.org/check/json/us.af.mil");
$data = json_decode($json, true);
echo $data["status"]; // blacklisted / whitelisted / unknown
package main
import (
"encoding/json"
"fmt"
"net/http"
)
func main() {
resp, err := http.Get("https://trashmail-blacklist.org/check/json/us.af.mil")
if err != nil {
panic(err)
}
defer resp.Body.Close()
var result struct {
Status string `json:"status"`
Domain string `json:"domain"`
}
json.NewDecoder(resp.Body).Decode(&result)
fmt.Println(result.Status)
}
Click "Run" to fetch the JSON response for us.af.mil.
Also available as xml, yaml, or img — replace json in the URL.
DNS Records
MX Records
- pri-nipr.eemsg.mail.mil
- pri-usaf-eemsg.eemsg.mail.mil
- sec-nipr.eemsg.mail.mil
- ter-nipr.eemsg.mail.mil
NS Records
- gunter-ns2.afnoc.af.mil
- hickam-ns2.afnoc.af.mil
- lackland-ns2.afnoc.af.mil
- osan-ns10.afnoc.af.mil
- ramstein-ns2.afnoc.af.mil
- yokota-ns10.afnoc.af.mil
SOA Record
- gunter-ns2.afnoc.af.mil
- dnsman@us.af.mil
TXT Records
- MS=ms11894763
- _910b8dc8s9jgdz1dxqjaei6fskb2lyf
- google-site-verification=TD5uyCbxqm3eiI0sGvoC6B2D8btZHxzq38z_Pg7qXxs
- identrust_validation=P6GYbtErWX9t6c1VhUx0yfEWeypJGSZqTq8OCGsw8Ouw
- qgPU2/6M23Y9TCXUAnux86hYl1AJlWzTdyA92N2QGSpRjmJEEXBI04KIW01cCfZPD5QptrMrcmD3FmuE2mqjZA==
- v=spf1 ip4:132.3.0.0/16 ip4:131.9.0.0/16 ip4:131.16.87.0/24 ip4:131.49.133.0/24 ip4:207.133.190.157/32 ip4:131.15.70.0/24 ip4:131.27.1.0/24 ip4:140.16.0.0/15 ip4:140.18.0.0/16 ip4:214.23.33.208/28 ip4:214.24.16.0/20 include:_spf.eemsg.mail.mil -all
SPF Includes
- _spf.eemsg.mail.mil
Related Domains by Mail Server
1 other domain also
use pri-nipr.eemsg.mail.mil
as their mail server.
Domain Network
Connections between domains, mail servers, nameservers, and shared infrastructure.
FAQ
Is us.af.mil a disposable email provider?
No, us.af.mil is whitelisted and considered a legitimate email provider.
Can I use us.af.mil for account registration?
us.af.mil is a legitimate email provider and safe to accept for account registrations.
How can I block disposable emails from us.af.mil?
Use the Trashmail-Blacklist API to check us.af.mil before accepting it in your application. Send a GET request to /check/json/us.af.mil to receive the domain status as JSON. Integrate this check into your signup or contact forms to automatically reject disposable email addresses.
What data is available for us.af.mil?
us.af.mil is whitelisted as a legitimate provider. We provide its status, DNS records, and related domains sharing the same mail server.
Block Disposable Emails Automatically
Integrate our free API into your signup flow to detect domains like us.af.mil before they reach your database.