#!/usr/bin/env perl # What this file is: An updated list of wildcard MX hosts that may be # used with Mail::CheckUser rather than relying upon the usually outdated # hard-coded values in Mail::CheckUser. This file is updated once per day # at approximately 0200 Mountain Time and can be found at: # # http://www.artsackett.com/mail_checkuser_wildcard_mxes.txt # # Please don't perform automated retrieval of this file more often than # once per day as it will do neither of us any good. # # TO USE THIS FILE WITH Mail::CheckUser: Save this file to the machine # from which you're using Mail::CheckUser, and in your code: # # use Mail::CheckUser qw/check_email/; # plus whatever else you want # require '/path/to/this/file/on/your/machine'; # # Make sure that the require is after 'use Mail::CheckUser'. # Last Generated: Fri Mar 29 08:01:05 2024 UTC $Mail::CheckUser::NXDOMAIN = { '5.161.182.241' => 'mail.hope-mail.com', '45.79.222.138' => 'PH', '64.70.19.203' => 'WS', '72.5.65.111' => 'NI', '88.198.29.97' => 'VG', '159.65.192.215' => 'mail.hope-mail.com', 'example.com' => ['127.0.0.1'], 'example.net' => ['127.0.0.1'], 'example.org' => ['127.0.0.1'], 'mail.hope-mail.com' => ['5.161.182.241', '159.65.192.215'], }; 1;