use of com.zimbra.cs.account.ldap.entry.LdapDistributionList in project zm-mailbox by Zimbra.
the class LdapProvisioning method makeDistributionList.
private DistributionList makeDistributionList(String dn, ZAttributes attrs, boolean isBasic) throws ServiceException {
String emailAddress = mDIT.dnToEmail(dn, attrs);
DistributionList dl = new LdapDistributionList(dn, emailAddress, attrs, isBasic, this);
return dl;
}
use of com.zimbra.cs.account.ldap.entry.LdapDistributionList in project zm-mailbox by Zimbra.
the class LdapProvisioning method removeMembers.
@Override
public void removeMembers(DistributionList list, String[] members) throws ServiceException {
LdapDistributionList ldl = (LdapDistributionList) list;
removeDistributionListMembers(ldl, members);
}
Aggregations