-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMailBoxes.php
120 lines (107 loc) · 3.27 KB
/
MailBoxes.php
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
namespace Exbil\Mailcow\MailBoxes;
use Exbil\MailCowAPI;
class MailBoxes
{
/**
* @var MailCowAPI
*/
private $MailCowAPI;
public function __construct(MailCowAPI $MailCowAPI)
{
$this->MailCowAPI = $MailCowAPI;
}
/**
* @return array|string
*/
public function getMailBoxes()
{
return $this->MailCowAPI->get('get/mailbox/all');
}
/**
* @return array|string
*/
public function getMailBox(string $domain)
{
return $this->MailCowAPI->get('get/mailbox/all/' . $domain);
}
/**
* @param string $mailname ONLY name | Example "mail" for "[email protected]"
* @return array|string
*/
public function addMailBox(string $mailname, string $domain, string $full_name, string $password, string $active = "1", string $force_pw_update = "1", string $quota = "1024")
{
return $this->MailCowAPI->post('add/mailbox', [
"local_part" => $mailname,
"domain" => $domain,
"name" => $full_name,
"quota" => $quota,
"password" => $password,
"password2" => $password,
"active" => $active,
"force_pw_update" => $force_pw_update,
"tls_enforce_in" => "1",
"tls_enforce_out" => "1",
]);
}
/**
* @return array|string
*/
public function updateMailBox(string $mail_address, string $full_name, string $password, string $active = "1", string $force_pw_update = "0", string $quota = "1024")
{
return $this->MailCowAPI->post('edit/mailbox', [
"items" => [
$mail_address
],
"attr" => [
"name" => $full_name,
"quota" => $quota,
"password" => $password,
"password2" => $password,
"active" => $active,
"sender_acl" => [
"default",
],
"force_pw_update" => $force_pw_update,
"sogo_access" => "1"
]
]);
}
/**
* @return array|string
*/
public function updateMailboxSpamScore(string $email, string $score)
{
return $this->MailCowAPI->post('edit/spam-score', [
"items" => [
$email
],
"attr" => [
"spam_score" => $score
]
]);
}
/**
* @return array|string
*/
public function deleteMailBox(array $mails)
{
return $this->MailCowAPI->post('delete/mailbox', $mails);
}
public function editPushoverSettings(string $username, bool $active, int $evaluate_x_prio, string $key, int $only_x_prio, string $senders, string $senders_regex, string $text, string $title, string $token){
return $this->MailCowAPI->post('edit/pushover', [
"attr" => [
"active" => (int)$active,
"evaluate_x_prio" => $evaluate_x_prio,
"key" => $key,
"only_x_prio" => $only_x_prio,
"senders" => $senders,
"senders_regex" => $senders_regex,
"text" => $text,
"title" => $title,
"token" => $token
],
"items" => $username
]);
}
}