M
Apple Mail HTTP client
About this crawler
Mail is a web crawler identified by the regular-expression pattern Mail\/ in the User-Agent request header. It is categorised as http-library. Use the regex above to detect, log, allow, or block Mail traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- Pattern
Mail\/- Tags
- http-library
- Added
- 2026/05/09
- Instances
- 1 known sample(s)
Sample User-Agent strings
Mail/3445.4.7 CFNetwork/889.9 Darwin/17.2.0 (x86_64)
Block this crawler
robots.txt — disallow Mail:
User-agent: Mail
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Mail\/ [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "Mail\\/") {
return 403;
}
← back to all crawlers