spf 0.0.35 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/spf/eval.rb +1 -1
- data/lib/spf/version.rb +1 -1
- data/spf.gemspec +1 -1
- metadata +1 -1
data/lib/spf/eval.rb
CHANGED
|
@@ -307,7 +307,7 @@ class SPF::Server
|
|
|
307
307
|
void_dns_lookups_count = request.root_request.state(:void_dns_lookups_count, 1)
|
|
308
308
|
if (@max_void_dns_lookups and
|
|
309
309
|
void_dns_lookups_count > @max_void_dns_lookups)
|
|
310
|
-
raise SPF::
|
|
310
|
+
raise SPF::ProcessingLimitExceededError.new(
|
|
311
311
|
"Maximum void DNS look-ups limit (#{@max_void_dns_lookups}) exceeded")
|
|
312
312
|
end
|
|
313
313
|
return void_dns_lookups_count
|
data/lib/spf/version.rb
CHANGED
data/spf.gemspec
CHANGED