RblStatusRblReplyText Property
Gets the reply from the DNS RBL with extra details regarding the reason of the IP address being blacklisted.

Namespace: MailBee.AntiSpam
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public string RblReplyText { get; }

Property Value

Type: String
The contents of A record which is associated with the given IP address in the specified RBL, or a null reference (Nothing in Visual Basic) if not available.
Remarks

This value can only be available if IsIPAddressInRbl is true (the IP address is blacklisted). If the IP is blacklisted, this means the corresponding A record does exist for the given IP address. This property returns the contents of this record (in the form of an IPv4 address, usually something like "127.0.0.3", etc).

The exact meaning of these records depends on each particular RBL. Refer to your RBL documentation to find out more. For instance, return codes of the popular Spamhaus Zen RBL can be found at https://www.spamhaus.org/zen/.

Note Note
The IP address string returned by this property does not denote any real IP address. It's just the requirement that A records must represent IP addresses. So treat them just like error codes.
See Also