forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit_mail_acc.php
More file actions
131 lines (126 loc) · 5.78 KB
/
edit_mail_acc.php
File metadata and controls
131 lines (126 loc) · 5.78 KB
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
121
122
123
124
125
126
127
128
129
130
131
<!-- Begin toolbar -->
<div class="toolbar">
<div class="toolbar-inner">
<div class="toolbar-buttons">
<a class="button button-secondary button-back js-button-back" href="/list/mail/?domain=<?= htmlentities(trim($v_domain, "'")) ?>&token=<?= $_SESSION["token"] ?>">
<i class="fas fa-arrow-left icon-blue"></i><?= _("Back") ?>
</a>
</div>
<div class="toolbar-buttons">
<button type="submit" class="button" form="main-form">
<i class="fas fa-floppy-disk icon-purple"></i><?= _("Save") ?>
</button>
</div>
</div>
</div>
<!-- End toolbar -->
<div class="container">
<form
x-data="{
hasAutoReply: <?= $v_autoreply == "yes" ? "true" : "false" ?>
}"
id="main-form"
name="v_edit_mail_acc"
method="post"
class="<?= $v_status ?>"
>
<input type="hidden" name="token" value="<?= $_SESSION["token"] ?>">
<input type="hidden" name="save" value="save">
<div class="form-container form-container-wide">
<h1 class="u-mb20"><?= _("Edit Mail Account") ?></h1>
<?php show_alert_message($_SESSION); ?>
<div class="sidebar-right-grid">
<div class="sidebar-right-grid-content">
<div class="u-mb10">
<label for="v_email" class="form-label"><?= _("Account") ?></label>
<input type="text" class="form-control" name="v_email" id="v_email" value="<?= htmlentities($_GET["account"]) . "@" . htmlentities($_GET["domain"]) ?>" disabled>
<input type="hidden" name="v_domain" value="<?= htmlentities(trim($v_domain, "'")) ?>">
<input type="hidden" name="v_account" value="<?= htmlentities(trim($v_account, "'")) ?>" class="js-account-input">
</div>
<div class="u-mb10">
<label for="v_password" class="form-label">
<?= _("Password") ?>
<button type="button" title="<?= _("Generate") ?>" class="u-unstyled-button u-ml5 js-generate-password">
<i class="fas fa-arrows-rotate icon-green"></i>
</button>
</label>
<div class="u-pos-relative u-mb10">
<input type="text" class="form-control js-password-input" name="v_password" id="v_password" value="<?= htmlentities(trim($v_password, "'")) ?>">
<div class="password-meter">
<meter max="4" class="password-meter-input js-password-meter"></meter>
</div>
</div>
</div>
<p class="u-mb10"><?= _("Your password must have at least") ?>:</p>
<ul class="u-list-bulleted u-mb20">
<li><?= _("8 characters long") ?></li>
<li><?= _("1 uppercase & 1 lowercase character") ?></li>
<li><?= _("1 number") ?></li>
</ul>
<div class="u-mb10">
<label for="v_send_email" class="form-label">
<?= _("Email login credentials to:") ?>
</label>
<input type="email" class="form-control" name="v_send_email" id="v_send_email" value="<?= htmlentities(trim($v_send_email, "'")) ?>">
</div>
<div class="u-mb10">
<label for="v_quota" class="form-label">
<?= _("Quota") ?> <span class="optional">(<?= _("in MB") ?>)</span>
</label>
<div class="u-pos-relative">
<input type="text" class="form-control" name="v_quota" id="v_quota" value="<?php if (!empty($v_quota)) {echo htmlentities(trim($v_quota, "'"));} else { echo "0"; } ?>">
<button type="button" class="unlimited-toggle js-unlimited-toggle" title="<?= _("Unlimited") ?>">
<i class="fas fa-infinity"></i>
</button>
</div>
</div>
<div class="u-mb10">
<label for="v_aliases" class="form-label">
<?= _("Aliases") ?> <span class="optional">(<?= _("Use local-part without domain name") ?>)</span>
</label>
<textarea class="form-control" name="v_aliases" id="v_aliases"><?= htmlentities(trim($v_aliases, "'")) ?></textarea>
</div>
<div class="form-check">
<input class="form-check-input js-discard-all-mail" type="checkbox" name="v_blackhole" id="v_blackhole" <?php if ($v_blackhole == 'yes') echo 'checked' ?>>
<label for="v_blackhole">
<?= _("Discard all mail") ?>
</label>
</div>
<div class="form-check <?php if ($v_blackhole == 'yes') { echo 'u-hidden'; } ?>">
<input class="form-check-input js-do-not-store-checkbox" type="checkbox" name="v_fwd_only" id="v_fwd_for" <?php if ($v_fwd_only == 'yes') echo 'checked' ?>>
<label for="v_fwd_for">
<?= _("Do not store forwarded mail") ?>
</label>
</div>
<div class="u-mb10">
<label for="v_fwd" class="form-label">
<?= _("Forward to") ?> <span class="optional">(<?= _("one or more email addresses") ?>)</span>
</label>
<textarea class="form-control js-forward-to-textarea" name="v_fwd" id="v_fwd" <?php if ($v_blackhole == 'yes') echo "disabled"; ?>><?= htmlentities(trim($v_fwd, "'")) ?></textarea>
</div>
<div class="form-check u-mb10">
<input x-model="hasAutoReply" class="form-check-input" type="checkbox" name="v_autoreply" id="v_autoreply">
<label for="v_autoreply">
<?= _("Auto Reply") ?>
</label>
</div>
<div x-cloak x-show="hasAutoReply" id="autoreplytable">
<div class="u-mb10">
<label for="v_autoreply_message" class="form-label"><?= _("Message") ?></label>
<textarea class="form-control" name="v_autoreply_message" id="v_autoreply_message"><?= htmlentities(trim($v_autoreply_message, "'")) ?></textarea>
</div>
</div>
<div class="u-mb20">
<label for="v_rate" class="form-label">
<?= _("Rate Limit") ?> <span class="optional">(<?= _("email / hour") ?>)</span>
</label>
<input type="text" class="form-control" name="v_rate" id="v_rate" value="<?= htmlentities(trim($v_rate, "'")) ?>" <?php if ($_SESSION['userContext'] != "admin"){ echo "disabled"; }?>>
</div>
</div>
<div class="sidebar-right-grid-sidebar">
<?php require $_SERVER["HESTIA"] . "/web/templates/includes/email-settings-panel.php"; ?>
</div>
</div>
</div>
</form>
</div>