Lines Matching defs:isGUID
64 * @param bool $isGUID Is the username passed a GUID or a samAccountName
67 public function createMailbox($username, $storageGroup, $emailAddress, $mailNickname=NULL, $useDefaults=TRUE, $baseDn=NULL, $isGUID=false)
91 $result = $this->adldap->user()->modify($username, $attributes, $isGUID);
110 * @param bool $isGUID Is the username passed a GUID or a samAccountName
113 public function addX400($username, $country, $admd, $pdmd, $org, $surname, $givenName, $isGUID=false)
120 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
149 * @param bool $isGUID Is the username passed a GUID or a samAccountName
152 public function addAddress($username, $emailAddress, $default = FALSE, $isGUID = false)
163 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
217 * @param bool $isGUID Is the username passed a GUID or a samAccountName
220 public function deleteAddress($username, $emailAddress, $isGUID=false)
226 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
257 * @param bool $isGUID Is the username passed a GUID or a samAccountName
260 public function primaryAddress($username, $emailAddress, $isGUID = false)
266 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);