IAdmExchangeMailGroupParameters

The IAdmExchangeMailGroupParameters interface represents Exchange properties of a mail-enabled group.

Inheritance: IAdmExchangeMailParameters

To modify Exchange properties of a mail-enabled group, you need to create a new instance of the IAdmExchangeMailGroupParameters interface. To do this, you need to call the default constructor of the AdmExchangeMailGroupParameters class that implements the interface.

 How
PowerShell
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")

$mailGroupParams = New-Object "Softerra.Adaxes.Adsi.Exchange.AdmExchangeMailGroupParameters"
C#
using Softerra.Adaxes.Interop.Adsi;
using Softerra.Adaxes.Adsi;
using Softerra.Adaxes.Interop.Adsi.Exchange;
using Softerra.Adaxes.Interop.Adsi.PersistentObjects;
class Program
{
    static void Main(string[] args)
    {
        AdmExchangeMailGroupParameters mailGroupParams =
            new AdmExchangeMailGroupParameters();
    }
}

Properties

Details

ExpansionServer

Gets or sets the Exchange Server that is used to expand the group.


ExpansionServerModificationEnabled

Gets or sets a value indicating whether the ExpansionServer property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

MemberDepartRestriction

Gets or sets the restriction to be placed on members who want to depart the distribution group.


MemberDepartRestrictionModificationEnabled

Gets or sets a value indicating whether the MemberDepartRestriction property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

MemberJoinRestriction

Gets or sets the restriction to be placed on members who want to join the distribution group.


MemberJoinRestrictionModificationEnabled

Gets or sets a value indicating whether the MemberJoinRestriction property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

ReportToManager

Gets or sets a value indicating whether to allow sending delivery reports to the group manager.

  • Type:
  • bool
  • Access:
  • Read/Write

ReportToManagerModificationEnabled

Gets or sets a value indicating whether the ReportToManager property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

ReportToOriginator

Gets or sets a value indicating whether to allow sending delivery reports to the message sender.

  • Type:
  • bool
  • Access:
  • Read/Write

ReportToOriginatorModificationEnabled

Gets or sets a value indicating whether the ReportToOriginator property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

SendOofMessageToOriginator

Gets or sets a value indicating whether to allow sending of Out-of-Office (OOF) messages to senders of messages to the group.

  • Type:
  • bool
  • Access:
  • Read/Write

SendOofMessageToOriginatorModificationEnabled

Gets or sets a value indicating whether the SendOofMessageToOriginator property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

Requirements

Minimum required version: 2013.1

See also