SmtpServerTargetName Property
Gets or sets the target name (Service Principal Name, SPN) of the SMTP relay server.

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

Property Value

Type: String
The target name (SPN) of the SMTP relay server. The default value is a null reference (Nothing in Visual Basic), which means the SPN must be auto-detected.
Remarks

This value is only used during GSSAPI authentication (Kerberos or NTLM). If it's a null reference, MailBee will construct it as "SMTP" + "/" + ServerName. Or, if it's set to a non-empty string, its value will be used as-is. If it's an empty string, GSSAPI authentication will perform as NTLM (not as Kerberos).

You may need to set this property if you want to authenticate with Kerberos and your SMTP server has SPN different from "SMTP" + "/" + ServerName. For instance, IIS SMTP may use "SmtpSvc" + "/" + ServerName.

See Also