103 lines
3.4 KiB
PHP
103 lines
3.4 KiB
PHP
<?php
|
|
|
|
use Propaganistas\LaravelDisposableEmail\Fetcher\DefaultFetcher;
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| JSON Source URLs
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The source URLs yielding a list of disposable email domains. Change these
|
|
| to whatever source you like. Just make sure they all return a JSON array.
|
|
|
|
|
| A sensible default is provided using jsDelivr's services. jsDelivr is
|
|
| a free service, so there are no uptime or support guarantees.
|
|
|
|
|
*/
|
|
|
|
'sources' => [
|
|
'https://cdn.jsdelivr.net/gh/disposable/disposable-email-domains@master/domains.json',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Fetch class
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The class responsible for fetching the contents of the source url.
|
|
| The default implementation makes use of file_get_contents and
|
|
| json_decode and will probably suffice for most applications.
|
|
|
|
|
| If your application has different needs (e.g. behind a proxy) then you
|
|
| can define a custom fetch class here that carries out the fetching.
|
|
| Your custom class should implement the Fetcher contract.
|
|
|
|
|
*/
|
|
|
|
'fetcher' => DefaultFetcher::class,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Storage Path
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The location where the retrieved domains list should be stored locally.
|
|
| The path should be accessible and writable by the web server. A good
|
|
| place for storing the list is in the framework's own storage path.
|
|
|
|
|
*/
|
|
|
|
'storage' => storage_path('framework/disposable_domains.json'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Whitelist Configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may define a list of whitelist domains that should be allowed.
|
|
| These domains will be removed from the list of disposable domains.
|
|
|
|
|
| Insert as "mydomain.com", without the @ symbol.
|
|
|
|
|
*/
|
|
|
|
'whitelist' => [],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Include Subdomains
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Determines whether subdomains should be validated based on the disposability
|
|
| status of their parent domains. Enabling this will treat any subdomain of
|
|
| a disposable domain as disposable too (e.g., 'temp.abc.com' if 'abc.com'
|
|
| is disposable).
|
|
|
|
|
*/
|
|
|
|
'include_subdomains' => false,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cache Configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may define whether the disposable domains list should be cached.
|
|
| If you disable caching or when the cache is empty, the list will be
|
|
| fetched from local storage instead.
|
|
|
|
|
| You can optionally specify an alternate cache connection or modify the
|
|
| cache key as desired.
|
|
|
|
|
*/
|
|
|
|
'cache' => [
|
|
'enabled' => true,
|
|
'store' => 'default',
|
|
'key' => 'disposable_email:domains',
|
|
],
|
|
|
|
];
|