Lines Matching refs:username
57 * @param string $username The username of the user to add the Exchange account to
67 …public function createMailbox($username, $storageGroup, $emailAddress, $mailNickname=NULL, $useDef… argument
69 if ($username === NULL){ return "Missing compulsory field [username]"; }
81 $mailNickname = $username;
91 $result = $this->adldap->user()->modify($username, $attributes, $isGUID);
103 * @param string $username The username of the user to add the X400 to to
113 …public function addX400($username, $country, $admd, $pdmd, $org, $surname, $givenName, $isGUID=fal… argument
115 if ($username === NULL){ return "Missing compulsory field [username]"; }
120 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
146 * @param string $username The username of the user to add the Exchange account to
152 public function addAddress($username, $emailAddress, $default = FALSE, $isGUID = false) argument
154 if ($username === NULL) { return "Missing compulsory field [username]"; }
163 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
215 * @param string $username The username of the user to add the Exchange account to
220 public function deleteAddress($username, $emailAddress, $isGUID=false) argument
222 if ($username === NULL) { return "Missing compulsory field [username]"; }
226 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
255 * @param string $username The username of the user to add the Exchange account to
260 public function primaryAddress($username, $emailAddress, $isGUID = false) argument
262 if ($username === NULL) { return "Missing compulsory field [username]"; }
266 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);