1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| <?php
|
| $username = 'admin';
| $password = 'admin';
|
| $soap_location = 'http://localhost:8080/remote/index.php';
| $soap_uri = 'http://localhost:8080/remote/';
|
|
| $client = new SoapClient(null, array('location' => $soap_location,
| 'uri' => $soap_uri));
|
|
| try {
| if($session_id = $client->login($username,$password)) {
| echo 'Zalogowany. Sesja:'.$session_id.'<br />';
| }
|
| $params = array( 'server_id' => 1,
| 'email' => 'franek'.date("Hmi").'@dsad.dsa',
| 'password' => 'franek',
| 'quota' => '10',
| 'maildir' => '/var/vmail/dsad.dsa/franek',
| 'homedir' => '/var/vmail', 'uid' => '5000',
| 'gid' => '5000',
| 'postfix' => 'y',
| 'disableimap' => '0',
| 'disablepop3' => '0');
|
|
| $client_id = 0;
| $mailuser_id = 3;
| $domain__id = $client->mail_user_update($session_id, $client_id, $mailuser_id , $params);
|
|
|
| if($client->logout($session_id)) {
| echo 'Wylogowany.<br />';
| }
|
|
| } catch (SoapFault $e) {
| die('SOAP Blad: '.$e->getMessage());
| }
|
| ?>
|
|