blob: da950e45e547d669a4e91b166d8ad055d6994cc4 (
plain) (
blame)
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
|
{{template "head.html" .}}
<h1>alps</h1>
<p>
<a href="/mailbox/INBOX">Back</a>
</p>
<h2>Settings</h2>
<form method="post" action="">
<label for="from">Full name:</label>
<input type="text" name="from" id="from" value="{{.Settings.From}}">
<br><br>
<label for="signature">Message signature:</label>
<textarea name="signature" id="signature" rows="5">{{.Settings.Signature}}</textarea>
<br><br>
<label for="smtp_username">Custom SMTP Username (optional):</label>
<input type="text" name="smtp_username" id="smtp_username" value="{{.Settings.SMTPUsername}}" placeholder="Leave empty to use login username">
<br>
<small>Use this if your SMTP server requires different credentials than your email login</small>
<br><br>
<label for="smtp_password">Custom SMTP Password (optional):</label>
<input type="password" name="smtp_password" id="smtp_password" value="{{.Settings.SMTPPassword}}" placeholder="Leave empty to use login password">
<br>
<small>Use this if your SMTP server requires different credentials than your email login</small>
<br><br>
<label for="subscriptions">Subscribed folders:</label>
<select name="subscriptions" id="subscriptions" multiple>
{{ $subs := .Subscriptions }}
{{ range .Mailboxes }}
{{ if and (ne .Name "INBOX") (not (.HasAttr "\\Noselect")) }}
<option
value="{{.Name}}"
{{ if $subs.Has .Name }}
selected
{{ end }}
>{{.Name}}</option>
{{ end }}
{{ end }}
</select>
<br><br>
<label for="messages_per_page">Messages per page:</label>
<input type="number" name="messages_per_page" id="messages_per_page" required value="{{.Settings.MessagesPerPage}}">
<br><br>
<input type="submit" value="Save">
</form>
{{template "foot.html"}}
|