mail4one/jsdev/index.html

189 lines
6.1 KiB
HTML
Raw Normal View History

2023-07-02 23:48:04 -04:00
<!doctype html>
<html>
<head>
2023-07-04 13:06:21 -04:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-07-03 17:52:28 -04:00
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
2023-07-04 13:06:21 -04:00
<title>Mail4one Web config</title>
2023-07-02 23:48:04 -04:00
<script type="application/json" id="m41config">
{
"matches": [
{
"name": "mydomain",
"addr_rexs": [
".*@mydomain.com",
".*@m.mydomain.com"
]
},
{
"name": "personal",
"addrs": [
"first.last@mydomain.com",
"secret.name@mydomain.com"
]
}
],
"boxes": [
{
"name": "spam",
"rules": [
{
"match_name": "mydomain",
"negate": true,
"stop_check": true
}
]
},
{
"name": "important",
"rules": [
{
"match_name": "personal"
}
]
},
{
"name": "all",
"rules": [
{
"match_name": "default_match_all"
}
]
}
],
"users": [
{
"username": "mymobile",
"password_hash": "AFTY5EVN7AX47ZL7UMH3BETYWFBTAV3XHR73CEFAJBPN2NIHPWDZHV2UQSMSPHSQQ2A2BFQBNC77VL7F2UKATQNJZGYLCSU6C43UQDAQXWXSWNGAEPGIMG2F3QDKBXL3MRHY6K2BPID64ZR6LABLPVSF",
"mbox": "important"
},
{
"username": "mydesk",
"password_hash": "AFTY5EVN7AX47ZL7UMH3BETYWFBTAV3XHR73CEFAJBPN2NIHPWDZHV2UQSMSPHSQQ2A2BFQBNC77VL7F2UKATQNJZGYLCSU6C43UQDAQXWXSWNGAEPGIMG2F3QDKBXL3MRHY6K2BPID64ZR6LABLPVSF",
"mbox": "all"
}
]
}
</script>
<script type="application/javascript">
2023-07-03 22:04:58 -04:00
"use strict"
2023-07-04 13:06:21 -04:00
2023-07-03 22:04:58 -04:00
// Globals
let matches_table
let match_row_template
let config
2023-07-04 13:06:21 -04:00
function initGlobals() {
matches_table = document.getElementById("web-cfg-matches")
match_row_template = document.getElementById("web-cfg-matches-row")
config = JSON.parse(document.getElementById('m41config').text)
}
2023-07-03 22:04:58 -04:00
function populate_match_table(matches_config) {
2023-07-04 13:06:21 -04:00
for (const { name: match_name, addrs, addr_rexs } of matches_config) {
2023-07-03 22:04:58 -04:00
const [match_type, match_values] = (() => {
2023-07-04 13:06:21 -04:00
2023-07-03 22:04:58 -04:00
if (addrs != undefined) {
return ["addrs", addrs]
} else {
return ["addr_rexs", addr_rexs]
}
2023-07-04 13:06:21 -04:00
})()
2023-07-02 23:48:04 -04:00
2023-07-03 17:52:28 -04:00
addMatchRow()
2023-07-04 13:06:21 -04:00
const last_row = matches_table.tBodies[0].lastElementChild
const [ ,name_cell, {firstElementChild: type_select}, value_cell ] = last_row.cells
2023-07-03 22:04:58 -04:00
name_cell.innerText = match_name
2023-07-04 13:06:21 -04:00
type_select.value = match_type
value_cell.innerText = match_values.join("\n")
2023-07-03 22:04:58 -04:00
}
}
function extract_match_table() {
2023-07-04 13:06:21 -04:00
2023-07-03 22:04:58 -04:00
let matches = []
for (let row of matches_table.tBodies[0].rows) {
2023-07-04 13:06:21 -04:00
const [ ,name_cell, {firstElementChild: type_select}, value_cell ] = row.cells
2023-07-03 22:04:58 -04:00
let m = {"name" : name_cell.innerText}
2023-07-04 13:06:21 -04:00
switch (type_select.value) {
case "addrs":
m["addrs"] = value_cell.innerText.split("\n")
break
case "addr_rexs":
m["addr_rexs"] = value_cell.innerText.split("\n")
break
2023-07-03 22:04:58 -04:00
}
matches.push(m)
2023-07-02 23:48:04 -04:00
}
2023-07-03 22:04:58 -04:00
return matches
2023-07-02 23:48:04 -04:00
}
2023-07-03 22:04:58 -04:00
2023-07-04 13:06:21 -04:00
function addMatchRow() {
let row_clone = match_row_template.content.cloneNode(true)
matches_table.tBodies[0].appendChild(row_clone)
}
2023-07-03 22:04:58 -04:00
function main() {
2023-07-04 13:06:21 -04:00
initGlobals()
2023-07-03 22:04:58 -04:00
populate_match_table(config["matches"])
save()
2023-07-04 13:06:21 -04:00
document.getElementById("before").innerText = JSON.stringify(config["matches"], null, 2)
2023-07-03 22:04:58 -04:00
}
function save() {
2023-07-04 13:06:21 -04:00
const matches = extract_match_table()
document.getElementById("after").innerText = JSON.stringify(matches, null, 2)
2023-07-02 23:48:04 -04:00
}
2023-07-03 22:04:58 -04:00
2023-07-02 23:48:04 -04:00
</script>
</head>
<body onload="main()">
<template id="web-cfg-matches-row">
<tr>
2023-07-04 13:06:21 -04:00
<td><button onClick="this.parentElement.parentElement.remove()"></button></td>
<td contentEditable></td>
2023-07-03 17:52:28 -04:00
<td>
<select>
<option value="addrs">List of addresses</option>
<option value="addr_rexs">List of regexes for addresses</option>
</select>
</td>
2023-07-04 13:06:21 -04:00
<td contentEditable></td>
2023-07-02 23:48:04 -04:00
</tr>
</template>
<h1>Mail4one Web config</h1>
2023-07-04 13:06:21 -04:00
<table border id="web-cfg-matches">
2023-07-02 23:48:04 -04:00
<thead>
2023-07-03 22:04:58 -04:00
<tr>
2023-07-04 13:06:21 -04:00
<th></th>
2023-07-03 22:04:58 -04:00
<th>Name</th>
<th>Type</th>
<th>Values</th>
</tr>
2023-07-02 23:48:04 -04:00
</thead>
<tbody>
</tbody>
</table>
2023-07-03 22:04:58 -04:00
<div>
2023-07-04 13:06:21 -04:00
<button onClick="addMatchRow()">Add Match</button>
<button onClick="save()">Save</button>
2023-07-03 22:04:58 -04:00
</div>
2023-07-04 13:06:21 -04:00
<hr>
<h3>Before</h3>
<pre id="before"></pre>
<hr>
<h3>After</h3>
<pre id="after"></pre>
<hr>
2023-07-02 23:48:04 -04:00
</body>
</html>