palpalani / laravel-dns-deny-list-check
checks if the given IP address or hostname is blacklisted on the configured dnsbl servers
Fund package maintenance!
palpalani
Installs: 2 843
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: ^8.2
- illuminate/contracts: ^10.0|^11.0
- spatie/laravel-package-tools: ^1.1
Requires (Dev)
- orchestra/testbench: ^8.0|^9.0
- phpunit/phpunit: ^9.5|^10.0|^11.0
- vimeo/psalm: ^5.6
This package is auto-updated.
Last update: 2024-10-14 17:57:40 UTC
README
Deny list (blacklist) checker will test a mail server IP address against over 50 DNS
based email blacklists. (Commonly called Realtime blacklist, DNSBL or RBL).
If your mail server has been blacklisted, some email you send may not be delivered.
Email blacklists are a common way of reducing spam.
Installation
You can install the package via composer:
composer require palpalani/laravel-dns-deny-list-check
You can publish the config file with:
php artisan vendor:publish --provider="palPalani\DnsDenyListCheck\DnsDenyListCheckServiceProvider" --tag="laravel-dns-deny-list-check-config"
This is the contents of the published config file:
return [
];
Usage
$check = new palPalani\DnsDenyListCheck\DnsDenyListCheck(); echo $check->check('127.0.0.1');
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Credits
License
The MIT License (MIT). Please see License File for more information.