Hi There I'm wondering is there any standard way ( api standards ) , to update mail user using his email address not by alias_id ? for example i want to change user password inside ispconfig db via a custom build mail client, but all i have is current user email address , how can i select that user and replace his password ? Thanks in advance
Yes, thats possible. Example: Code: $mail_user_record = $client->mail_user_get($session_id, array('email' => '[email protected]')); $mail_user_record['name'] = 'Tom'; $client->mail_user_update($session_id, $client_id, $mail_user_record['mailuser_id'], $mail_user_record);