Table of Contents

Class ServerSettings

Namespace
Acuit.Pinpoint.Services.Entities
Assembly
Acuit.Pinpoint.Services.Entities.dll

Acuit Pinpoint email settings.

[DataContract]
public class ServerSettings
Inheritance
ServerSettings
Inherited Members

Constructors

ServerSettings()

public ServerSettings()

Properties

AdminEmailAddresses

Gets or sets the administrator email addresses, separated by commas. If this is not specified, email notifications to administrators will fail.

[DataMember]
public string? AdminEmailAddresses { get; set; }

Property Value

string

FromAddress

Gets or sets the email address to use for emails from Acuit Pinpoint Server. This is required when MailHost is specified.

[DataMember]
public string? FromAddress { get; set; }

Property Value

string

MailHost

Gets or sets the name or IP address of the host used for sending email via SMTP, or null or empty to disable emailed notifications.

[DataMember]
public string? MailHost { get; set; }

Property Value

string

MailPort

Gets or sets the port used for sending email via SMTP. This defaults to 25.

[DataMember]
public int MailPort { get; set; }

Property Value

int