FetchSPF is an ActiveX component that returns SPF-1 IP Numbers
| Description | SPF establishes a policy framework and a sender authentication scheme that verifies the identity of email servers (domains) for incoming messages. The Control willreturn all the IP numbers associated with a domain which is using SPF Records. | |||||||||||||||
| Methods | ||||||||||||||||
| Fetch |
|
|||||||||||||||
| Parameters | ||||||||||||||||
| SenderIP |
|
|||||||||||||||
| Failtype |
|
|||||||||||||||
| Example | ||||||||||||||||
| Visual Basic | Dim fetchspf As Object
fetchspf = CreateObject(”fetchspf.spfread”) fetchspf.senderip = “216.113.167.215″ RichTextBox1.Text = fetchspf.fetch(”ebay.co.uk”,”127.0.0.1″) Returns e.g |
|||||||||||||||
| FoxPro | fetchspf = Createobject(’fetchspf.spfread’)
fetchspf.senderip=Alltrim(”216.113.167.215″) thisform.edit1.Value = fetchspf.Fetch(”ebay.co.uk”,”127.0.0.1″) Returns e.g |
|||||||||||||||
| Delphi | var
fetchspf : olevariant; Try fetchspf := CREATEoleOBJECT(’fetchspf.spfread’); fetchspf.senderip :=trim(’216.113.167.215′); fetchspf.failtype = 0 memo1.Text:= fetchspf.Fetch(’ebay.co.uk’,'127.0.0.1′); finally fetchspf := VarNull; end; end; Returns e.g |
|||||||||||||||