IceWarp Provider

This commit is contained in:
Olov Karlsson 2014-08-11 09:24:58 +02:00
parent 00a93a104d
commit 0cb357a536
31 changed files with 6054 additions and 24 deletions

View file

@ -67,4 +67,42 @@ namespace WebsitePanel.Providers.Mail
#endregion
#region IceWarp
public enum IceWarpListMembersSource
{
MembersInFile = 0,
AllDomainUsers = 1,
AllDomainAdmins = 3
}
public enum IceWarpListFromAndReplyToHeader
{
NoChange = 0,
SetToSender = 1,
SetToValue = 2
}
public enum IceWarpListOriginator
{
Blank = 0,
Sender = 1,
Owner = 2
}
[Flags]
public enum IceWarpListDefaultRights
{
Receive = 1,
Post = 2,
Digest = 4
}
public enum IceWarpListConfirmSubscription
{
None = 0,
User = 1,
Owner = 2
}
#endregion
}