2024-01-10 18:48:53 +03:00
|
|
|
//go:build website
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"html"
|
|
|
|
htmltemplate "html/template"
|
|
|
|
"io"
|
|
|
|
"log"
|
|
|
|
"os"
|
2024-02-08 16:49:01 +03:00
|
|
|
"slices"
|
2024-01-10 18:48:53 +03:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/russross/blackfriday/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func xcheck(err error, msg string) {
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("%s: %s", msg, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var commithash = os.Getenv("commithash")
|
|
|
|
var commitdate = os.Getenv("commitdate")
|
|
|
|
|
|
|
|
var pageRoot, pageProtocols bool
|
2024-02-08 17:12:06 +03:00
|
|
|
var pageTitle string
|
2024-01-10 18:48:53 +03:00
|
|
|
flag.BoolVar(&pageRoot, "root", false, "is top-level index page, instead of in a sub directory")
|
|
|
|
flag.BoolVar(&pageProtocols, "protocols", false, "is protocols page")
|
2024-02-08 17:12:06 +03:00
|
|
|
flag.StringVar(&pageTitle, "title", "", "html title of page, set to value of link name with a suffix")
|
2024-01-10 18:48:53 +03:00
|
|
|
flag.Parse()
|
|
|
|
args := flag.Args()
|
|
|
|
if len(args) != 1 {
|
|
|
|
flag.Usage()
|
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
linkname := args[0]
|
|
|
|
|
2024-02-08 17:12:06 +03:00
|
|
|
if pageTitle == "" && linkname != "" {
|
|
|
|
pageTitle = linkname + " - Mox"
|
2024-01-10 18:48:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Often the website markdown file.
|
|
|
|
input, err := io.ReadAll(os.Stdin)
|
|
|
|
xcheck(err, "read")
|
|
|
|
|
|
|
|
// For rendering the main content of the page.
|
|
|
|
r := &renderer{
|
|
|
|
linkname == "Config reference",
|
|
|
|
"",
|
|
|
|
*blackfriday.NewHTMLRenderer(blackfriday.HTMLRendererParameters{HeadingIDPrefix: "hdr-"}),
|
|
|
|
}
|
|
|
|
opts := []blackfriday.Option{
|
|
|
|
blackfriday.WithExtensions(blackfriday.CommonExtensions | blackfriday.AutoHeadingIDs),
|
|
|
|
blackfriday.WithRenderer(r),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make table of contents of a page, based on h2-links, or "## ..." in markdown.
|
|
|
|
makeTOC := func() ([]byte, []byte) {
|
|
|
|
var title string
|
|
|
|
|
|
|
|
// Get the h2's, split them over the columns.
|
2024-02-08 17:12:06 +03:00
|
|
|
type toclink struct {
|
2024-01-10 18:48:53 +03:00
|
|
|
Title string
|
|
|
|
ID string
|
|
|
|
}
|
2024-02-08 17:12:06 +03:00
|
|
|
var links []toclink
|
2024-01-10 18:48:53 +03:00
|
|
|
|
|
|
|
node := blackfriday.New(opts...).Parse(input)
|
|
|
|
if node == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
for c := node.FirstChild; c != nil; c = c.Next {
|
|
|
|
if c.Type != blackfriday.Heading {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if c.Level == 1 {
|
|
|
|
title = string(c.FirstChild.Literal)
|
|
|
|
} else if c.Level == 2 {
|
2024-02-08 17:12:06 +03:00
|
|
|
link := toclink{string(c.FirstChild.Literal), c.HeadingID}
|
2024-01-10 18:48:53 +03:00
|
|
|
links = append(links, link)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We split links over 2 columns if we have quite a few, to keep the page somewhat compact.
|
|
|
|
ncol := 1
|
|
|
|
if len(links) > 6 {
|
|
|
|
ncol = 2
|
|
|
|
}
|
|
|
|
|
|
|
|
n := len(links) / ncol
|
|
|
|
rem := len(links) - ncol*n
|
|
|
|
counts := make([]int, ncol)
|
|
|
|
for i := 0; i < ncol; i++ {
|
|
|
|
counts[i] = n
|
|
|
|
if rem > i {
|
|
|
|
counts[i]++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
toc := `<div class="toc">`
|
|
|
|
toc += "\n"
|
|
|
|
o := 0
|
|
|
|
for _, n := range counts {
|
|
|
|
toc += "<ul>\n"
|
|
|
|
for _, link := range links[o : o+n] {
|
|
|
|
toc += fmt.Sprintf(`<li><a href="#%s">%s</a></li>`, html.EscapeString("hdr-"+link.ID), html.EscapeString(link.Title))
|
|
|
|
toc += "\n"
|
|
|
|
}
|
|
|
|
toc += "</ul>\n"
|
|
|
|
o += n
|
|
|
|
}
|
|
|
|
toc += "</div>\n"
|
|
|
|
var titlebuf []byte
|
|
|
|
if title != "" {
|
|
|
|
titlebuf = []byte(fmt.Sprintf(`<h1 id="%s">%s</h1>`, html.EscapeString("hdr-"+blackfriday.SanitizedAnchorName(title)), html.EscapeString(title)))
|
|
|
|
}
|
|
|
|
return titlebuf, []byte(toc)
|
|
|
|
}
|
|
|
|
|
|
|
|
var output []byte
|
|
|
|
if pageRoot {
|
|
|
|
// Split content into two parts for main page. First two lines are special, for
|
|
|
|
// header.
|
|
|
|
inputstr := string(input)
|
|
|
|
lines := strings.SplitN(inputstr, "\n", 3)
|
|
|
|
if len(lines) < 2 {
|
|
|
|
log.Fatalf("missing header")
|
|
|
|
}
|
|
|
|
inputstr = inputstr[len(lines[0])+1+len(lines[1])+1:]
|
|
|
|
lines[0] = strings.TrimPrefix(lines[0], "#")
|
|
|
|
lines[1] = strings.TrimPrefix(lines[1], "##")
|
2024-01-12 01:01:04 +03:00
|
|
|
sep := "## Quickstart demo"
|
2024-01-10 18:48:53 +03:00
|
|
|
inleft, inright, found := strings.Cut(inputstr, sep)
|
|
|
|
if !found {
|
|
|
|
log.Fatalf("did not find separator %q", sep)
|
|
|
|
}
|
|
|
|
outleft := blackfriday.Run([]byte(inleft), opts...)
|
|
|
|
outright := blackfriday.Run([]byte(sep+inright), opts...)
|
|
|
|
output = []byte(fmt.Sprintf(`
|
|
|
|
<div class="rootheader h1">
|
|
|
|
<h1>%s</h1>
|
|
|
|
<h2>%s</h2>
|
|
|
|
</div>
|
|
|
|
<div class="two"><div>%s</div><div>%s</div></div>`, html.EscapeString(lines[0]), html.EscapeString(lines[1]), outleft, outright))
|
|
|
|
} else if pageProtocols {
|
|
|
|
// ../rfc/index.txt is the standard input. We'll read each topic and the RFCs.
|
|
|
|
topics := parseTopics(input)
|
|
|
|
|
|
|
|
// First part of content is in markdown file.
|
|
|
|
summary, err := os.ReadFile("protocols/summary.md")
|
|
|
|
xcheck(err, "reading protocol summary")
|
|
|
|
|
|
|
|
output = blackfriday.Run(summary, opts...)
|
|
|
|
|
|
|
|
var out bytes.Buffer
|
|
|
|
_, err = out.Write(output)
|
|
|
|
xcheck(err, "write")
|
|
|
|
|
|
|
|
err = protocolTemplate.Execute(&out, map[string]any{"Topics": topics})
|
|
|
|
xcheck(err, "render protocol support")
|
|
|
|
|
|
|
|
output = out.Bytes()
|
|
|
|
} else {
|
|
|
|
// Other pages.
|
|
|
|
xinput := input
|
|
|
|
if bytes.HasPrefix(xinput, []byte("# ")) {
|
|
|
|
xinput = bytes.SplitN(xinput, []byte("\n"), 2)[1]
|
|
|
|
}
|
|
|
|
output = blackfriday.Run(xinput, opts...)
|
2024-02-08 17:12:06 +03:00
|
|
|
titlebuf, toc := makeTOC()
|
2024-01-10 18:48:53 +03:00
|
|
|
output = append(toc, output...)
|
2024-02-08 17:12:06 +03:00
|
|
|
output = append(titlebuf, output...)
|
2024-01-10 18:48:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// HTML preamble.
|
2024-02-08 17:12:06 +03:00
|
|
|
before = strings.Replace(before, "<title>...</title>", "<title>"+html.EscapeString(pageTitle)+"</title>", 1)
|
2024-01-10 18:48:53 +03:00
|
|
|
before = strings.Replace(before, ">"+linkname+"<", ` style="font-weight: bold">`+linkname+"<", 1)
|
|
|
|
if !pageRoot {
|
|
|
|
before = strings.ReplaceAll(before, `"./`, `"../`)
|
|
|
|
}
|
|
|
|
_, err = os.Stdout.Write([]byte(before))
|
|
|
|
xcheck(err, "write")
|
|
|
|
|
|
|
|
// Page content.
|
|
|
|
_, err = os.Stdout.Write(output)
|
|
|
|
xcheck(err, "write")
|
|
|
|
|
|
|
|
// Bottom, HTML closing.
|
|
|
|
after = strings.Replace(after, "[commit]", fmt.Sprintf("%s, commit %s", commitdate, commithash), 1)
|
|
|
|
_, err = os.Stdout.Write([]byte(after))
|
|
|
|
xcheck(err, "write")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Implementation status of standards/protocols.
|
|
|
|
type Status string
|
|
|
|
|
|
|
|
const (
|
|
|
|
Implemented Status = "Yes"
|
|
|
|
Partial Status = "Partial"
|
|
|
|
Roadmap Status = "Roadmap"
|
|
|
|
NotImplemented Status = "No"
|
|
|
|
Unknown Status = "?"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RFC and its implementation status.
|
|
|
|
type RFC struct {
|
|
|
|
Number int
|
|
|
|
Title string
|
|
|
|
Status Status
|
|
|
|
StatusClass string
|
|
|
|
Obsolete bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// Topic is a group of RFC's, typically by protocol, e.g. SMTP.
|
|
|
|
type Topic struct {
|
|
|
|
Title string
|
|
|
|
ID string
|
|
|
|
RFCs []RFC
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse topics and RFCs from ../rfc/index.txt.
|
|
|
|
// headings are topics, and hold the RFCs that follow them.
|
|
|
|
func parseTopics(input []byte) []Topic {
|
|
|
|
var l []Topic
|
|
|
|
var t *Topic
|
|
|
|
|
|
|
|
b := bufio.NewReader(bytes.NewReader(input))
|
|
|
|
for {
|
|
|
|
line, err := b.ReadString('\n')
|
|
|
|
if line != "" {
|
|
|
|
if strings.HasPrefix(line, "# ") {
|
|
|
|
// Skip topics without RFCs to show on the website.
|
|
|
|
if t != nil && len(t.RFCs) == 0 {
|
|
|
|
l = l[:len(l)-1]
|
|
|
|
}
|
|
|
|
title := strings.TrimPrefix(line, "# ")
|
|
|
|
id := blackfriday.SanitizedAnchorName(title)
|
|
|
|
l = append(l, Topic{Title: title, ID: id})
|
|
|
|
t = &l[len(l)-1] // RFCs will be added to t.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tokens: RFC number, implementation status, is obsolete, title.
|
|
|
|
tokens := strings.Split(line, "\t")
|
|
|
|
if len(tokens) != 4 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
ignore := strings.HasPrefix(tokens[1], "-")
|
|
|
|
if ignore {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
status := Status(strings.TrimPrefix(tokens[1], "-"))
|
|
|
|
var statusClass string
|
|
|
|
switch status {
|
|
|
|
case Implemented:
|
|
|
|
statusClass = "implemented"
|
|
|
|
case Partial:
|
|
|
|
statusClass = "partial"
|
|
|
|
case Roadmap:
|
|
|
|
statusClass = "roadmap"
|
|
|
|
case NotImplemented:
|
|
|
|
statusClass = "notimplemented"
|
|
|
|
case Unknown:
|
|
|
|
statusClass = "unknown"
|
|
|
|
default:
|
|
|
|
log.Fatalf("unknown implementation status %q, line %q", status, line)
|
|
|
|
}
|
|
|
|
|
|
|
|
number, err := strconv.ParseInt(tokens[0], 10, 32)
|
|
|
|
xcheck(err, "parsing rfc number")
|
|
|
|
flags := strings.Split(tokens[2], ",")
|
|
|
|
title := tokens[3]
|
|
|
|
|
|
|
|
rfc := RFC{
|
|
|
|
int(number),
|
|
|
|
title,
|
|
|
|
status,
|
|
|
|
statusClass,
|
|
|
|
slices.Contains(flags, "Obs"),
|
|
|
|
}
|
|
|
|
t.RFCs = append(t.RFCs, rfc)
|
|
|
|
}
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
xcheck(err, "read line")
|
|
|
|
}
|
|
|
|
// Skip topics without RFCs to show on the website.
|
|
|
|
if t != nil && len(t.RFCs) == 0 {
|
|
|
|
l = l[:len(l)-1]
|
|
|
|
}
|
|
|
|
return l
|
|
|
|
}
|
|
|
|
|
|
|
|
// renderer is used for all HTML pages, for showing links to h2's on hover, and for
|
|
|
|
// specially rendering the config files with links for each config field.
|
|
|
|
type renderer struct {
|
|
|
|
codeBlockConfigFile bool // Whether to interpret codeblocks as config files.
|
|
|
|
h2 string // Current title, for config line IDs.
|
|
|
|
blackfriday.HTMLRenderer // Embedded for RenderFooter and RenderHeader.
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *renderer) RenderNode(w io.Writer, node *blackfriday.Node, entering bool) blackfriday.WalkStatus {
|
|
|
|
if node.Type == blackfriday.Heading && node.Level == 2 {
|
|
|
|
r.h2 = string(node.FirstChild.Literal)
|
|
|
|
|
|
|
|
id := "hdr-" + blackfriday.SanitizedAnchorName(string(node.FirstChild.Literal))
|
|
|
|
if entering {
|
|
|
|
_, err := fmt.Fprintf(w, `<h2 id="%s">`, id)
|
|
|
|
xcheck(err, "write")
|
|
|
|
} else {
|
|
|
|
_, err := fmt.Fprintf(w, ` <a href="#%s">#</a></h2>`, id)
|
|
|
|
xcheck(err, "write")
|
|
|
|
}
|
|
|
|
return blackfriday.GoToNext
|
|
|
|
}
|
|
|
|
if r.codeBlockConfigFile && node.Type == blackfriday.CodeBlock {
|
|
|
|
if !entering {
|
|
|
|
log.Fatalf("not entering")
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := fmt.Fprintln(w, `<div class="config">`)
|
|
|
|
xcheck(err, "write")
|
|
|
|
r.writeConfig(w, node.Literal)
|
|
|
|
_, err = fmt.Fprintln(w, "</div>")
|
|
|
|
xcheck(err, "write")
|
|
|
|
return blackfriday.GoToNext
|
|
|
|
}
|
|
|
|
return r.HTMLRenderer.RenderNode(w, node, entering)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *renderer) writeConfig(w io.Writer, data []byte) {
|
|
|
|
var fields []string
|
|
|
|
for _, line := range bytes.Split(data, []byte("\n")) {
|
|
|
|
var attrs, link string
|
|
|
|
|
|
|
|
s := string(line)
|
|
|
|
text := strings.TrimLeft(s, "\t")
|
|
|
|
if strings.HasPrefix(text, "#") {
|
|
|
|
attrs = ` class="comment"`
|
|
|
|
} else if text != "" {
|
|
|
|
// Add id attribute and link to it, based on the nested config fields that lead here.
|
|
|
|
ntab := len(s) - len(text)
|
|
|
|
nfields := ntab + 1
|
|
|
|
if len(fields) >= nfields {
|
|
|
|
fields = fields[:nfields]
|
|
|
|
} else if nfields > len(fields)+1 {
|
|
|
|
xcheck(errors.New("indent jumped"), "write codeblock")
|
|
|
|
} else {
|
|
|
|
fields = append(fields, "")
|
|
|
|
}
|
|
|
|
|
|
|
|
var word string
|
|
|
|
if text == "-" {
|
|
|
|
word = "dash"
|
|
|
|
} else {
|
|
|
|
word = strings.Split(text, ":")[0]
|
|
|
|
}
|
|
|
|
fields[nfields-1] = word
|
|
|
|
|
|
|
|
id := fmt.Sprintf("cfg-%s-%s", blackfriday.SanitizedAnchorName(r.h2), strings.Join(fields, "-"))
|
|
|
|
attrs = fmt.Sprintf(` id="%s"`, id)
|
|
|
|
link = fmt.Sprintf(` <a href="#%s">#</a>`, id)
|
|
|
|
}
|
|
|
|
if s == "" {
|
|
|
|
line = []byte("\n") // Prevent empty, zero-height line.
|
|
|
|
}
|
|
|
|
_, err := fmt.Fprintf(w, "<div%s>%s%s</div>\n", attrs, html.EscapeString(string(line)), link)
|
|
|
|
xcheck(err, "write codeblock")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var before = `<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>...</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="icon" href="noNeedlessFaviconRequestsPlease:" />
|
|
|
|
<style>
|
|
|
|
* { font-size: 18px; font-family: ubuntu, lato, sans-serif; margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
html { scroll-padding-top: 4ex; }
|
|
|
|
.textblock { max-width: 50em; margin: 0 auto; }
|
|
|
|
p { max-width: 50em; margin-bottom: 2ex; }
|
|
|
|
ul, ol { max-width: 50em; margin-bottom: 2ex; }
|
|
|
|
pre, code, .config, .config * { font-family: "ubuntu mono", monospace; }
|
|
|
|
pre, .config { margin-bottom: 2ex; padding: 1em; background-color: #f8f8f8; border-radius: .25em; }
|
|
|
|
pre { white-space: pre-wrap; }
|
|
|
|
code { background-color: #eee; }
|
|
|
|
pre code { background-color: inherit; }
|
|
|
|
h1 { font-size: 1.8em; }
|
|
|
|
h2 { font-size: 1.25em; margin-bottom: 1ex; }
|
|
|
|
h2 > a { opacity: 0; }
|
|
|
|
h2:hover > a { opacity: 1; }
|
|
|
|
h3 { font-size: 1.1em; margin-bottom: 1ex; }
|
|
|
|
.feature {display: inline-block; width: 30%; margin: 1em; }
|
|
|
|
dl { margin: 1em 0; }
|
|
|
|
dt { font-weight: bold; margin-bottom: .5ex; }
|
|
|
|
dd { max-width: 50em; padding-left: 2em; margin-bottom: 1em; }
|
|
|
|
table { margin-bottom: 2ex; }
|
|
|
|
|
2024-04-19 12:12:17 +03:00
|
|
|
video { display: block; max-width: 100%; box-shadow: 0 0 20px 0 #ddd; margin: 2ex auto; }
|
2024-01-10 18:48:53 +03:00
|
|
|
.img1 { width: 1050px; max-width: 100%; box-shadow: 0 0 20px 0 #bbb; }
|
|
|
|
.img2 { width: 1500px; max-width: 100%; box-shadow: 0 0 20px 0 #bbb; }
|
|
|
|
|
|
|
|
.implemented { background: linear-gradient(90deg, #bbf05c 0%, #d0ff7d 100%); padding: 0 .25em; display: inline-block; }
|
|
|
|
.partial { background: linear-gradient(90deg, #f2f915 0%, #fbff74 100%); padding: 0 .25em; display: inline-block; }
|
|
|
|
.roadmap { background: linear-gradient(90deg, #ffbf6c 0%, #ffd49c 100%); padding: 0 .25em; display: inline-block; }
|
|
|
|
.notimplemented { background: linear-gradient(90deg, #ffa2fe 0%, #ffbffe 100%); padding: 0 .25em; display: inline-block; }
|
|
|
|
.unknown { background: linear-gradient(90deg, #ccc 0%, #e2e2e2 100%); padding: 0 .25em; display: inline-block; }
|
|
|
|
|
|
|
|
.config > * { white-space: pre-wrap; }
|
|
|
|
.config .comment { color: #777; }
|
|
|
|
.config > div > a { opacity: 0; }
|
|
|
|
.config > div:hover > a { opacity: 1; }
|
|
|
|
.config > div:target { background-color: gold; }
|
|
|
|
|
|
|
|
.rfcs .topic a { opacity: 0; }
|
|
|
|
.rfcs .topic:hover a { opacity: 1; }
|
|
|
|
|
|
|
|
.rootheader { background: linear-gradient(90deg, #ff9d9d 0%, #ffbd9d 100%); display: inline-block; padding: .25ex 3em .25ex 1em; border-radius: .2em; margin-bottom: 2ex; }
|
|
|
|
h1, .h1 { margin-bottom: 1ex; }
|
|
|
|
h2 { background: linear-gradient(90deg, #6dd5fd 0%, #77e8e3 100%); display: inline-block; padding: 0 .5em 0 .25em; margin-top: 2ex; font-weight: normal; }
|
|
|
|
.rootheader h1, .rootheader h2 { background: none; display: block; padding: 0; margin-top: 0; font-weight: bold; margin-bottom: 0; }
|
|
|
|
.meta { padding: 1em; display: flex; justify-content: space-between; margin: -1em; }
|
|
|
|
.meta > div > * { font-size: .9em; opacity: .5; }
|
|
|
|
.meta > nth-child(2) { text-align: right; opacity: .35 }
|
|
|
|
|
|
|
|
.navbody { display: flex; }
|
|
|
|
.nav { padding: 1em; text-align: right; background-color: #f4f4f4; }
|
|
|
|
.nav li { white-space: pre; }
|
|
|
|
.main { padding: 1em; }
|
|
|
|
.main ul, .main ol { padding-left: 1em; }
|
|
|
|
.two { display: flex; gap: 2em; }
|
2024-01-12 01:01:04 +03:00
|
|
|
.two > div { flex-basis: 50%; max-width: 50em; }
|
2024-01-10 18:48:53 +03:00
|
|
|
.toc { display: flex; gap: 2em; margin-bottom: 3ex; }
|
|
|
|
.toc ul { margin-bottom: 0; }
|
|
|
|
|
|
|
|
@media (min-width:1025px) {
|
|
|
|
.nav { box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.075); min-height: 100vh; }
|
|
|
|
.main { padding-left: 2em; }
|
|
|
|
}
|
|
|
|
@media (max-width:1024px) {
|
|
|
|
.navbody { display: block; }
|
|
|
|
.main { box-shadow: 0 0 10px rgba(0, 0, 0, 0.075); }
|
|
|
|
.nav { text-align: left; }
|
|
|
|
.nav ul { display: inline; }
|
|
|
|
.nav li { display: inline; }
|
|
|
|
.nav .linkpad { display: none; }
|
|
|
|
.extlinks { display: none; }
|
|
|
|
.two { display: block; }
|
|
|
|
.two > div { max-width: auto; }
|
|
|
|
.toc { display: block; }
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="navbody">
|
|
|
|
<nav class="nav">
|
|
|
|
<ul style="list-style: none">
|
|
|
|
<li><a href="./">Mox</a></li>
|
|
|
|
<li><a href="./features/">Features</a></li>
|
|
|
|
<li><a href="./screenshots/">Screenshots</a></li>
|
|
|
|
<li><a href="./install/">Install</a></li>
|
|
|
|
<li><a href="./faq/">FAQ</a></li>
|
|
|
|
<li><a href="./config/">Config reference</a></li>
|
|
|
|
<li><a href="./commands/">Command reference</a></li>
|
|
|
|
<li class="linkpad" style="visibility: hidden; font-weight: bold; height: 0"><a href="./commands/">Command reference</a></li>
|
|
|
|
<li><a href="./protocols/">Protocols</a></li>
|
|
|
|
</ul>
|
|
|
|
<div class="extlinks">
|
|
|
|
<br/>
|
|
|
|
External links:
|
|
|
|
<ul style="list-style: none">
|
|
|
|
<li><a href="https://github.com/mjl-/mox">Sources at github</a></li>
|
add a webapi and webhooks for a simple http/json-based api
for applications to compose/send messages, receive delivery feedback, and
maintain suppression lists.
this is an alternative to applications using a library to compose messages,
submitting those messages using smtp, and monitoring a mailbox with imap for
DSNs, which can be processed into the equivalent of suppression lists. but you
need to know about all these standards/protocols and find libraries. by using
the webapi & webhooks, you just need a http & json library.
unfortunately, there is no standard for these kinds of api, so mox has made up
yet another one...
matching incoming DSNs about deliveries to original outgoing messages requires
keeping history of "retired" messages (delivered from the queue, either
successfully or failed). this can be enabled per account. history is also
useful for debugging deliveries. we now also keep history of each delivery
attempt, accessible while still in the queue, and kept when a message is
retired. the queue webadmin pages now also have pagination, to show potentially
large history.
a queue of webhook calls is now managed too. failures are retried similar to
message deliveries. webhooks can also be saved to the retired list after
completing. also configurable per account.
messages can be sent with a "unique smtp mail from" address. this can only be
used if the domain is configured with a localpart catchall separator such as
"+". when enabled, a queued message gets assigned a random "fromid", which is
added after the separator when sending. when DSNs are returned, they can be
related to previously sent messages based on this fromid. in the future, we can
implement matching on the "envid" used in the smtp dsn extension, or on the
"message-id" of the message. using a fromid can be triggered by authenticating
with a login email address that is configured as enabling fromid.
suppression lists are automatically managed per account. if a delivery attempt
results in certain smtp errors, the destination address is added to the
suppression list. future messages queued for that recipient will immediately
fail without a delivery attempt. suppression lists protect your mail server
reputation.
submitted messages can carry "extra" data through the queue and webhooks for
outgoing deliveries. through webapi as a json object, through smtp submission
as message headers of the form "x-mox-extra-<key>: value".
to make it easy to test webapi/webhooks locally, the "localserve" mode actually
puts messages in the queue. when it's time to deliver, it still won't do a full
delivery attempt, but just delivers to the sender account. unless the recipient
address has a special form, simulating a failure to deliver.
admins now have more control over the queue. "hold rules" can be added to mark
newly queued messages as "on hold", pausing delivery. rules can be about
certain sender or recipient domains/addresses, or apply to all messages pausing
the entire queue. also useful for (local) testing.
new config options have been introduced. they are editable through the admin
and/or account web interfaces.
the webapi http endpoints are enabled for newly generated configs with the
quickstart, and in localserve. existing configurations must explicitly enable
the webapi in mox.conf.
gopherwatch.org was created to dogfood this code. it initially used just the
compose/smtpclient/imapclient mox packages to send messages and process
delivery feedback. it will get a config option to use the mox webapi/webhooks
instead. the gopherwatch code to use webapi/webhook is smaller and simpler, and
developing that shaped development of the mox webapi/webhooks.
for issue #31 by cuu508
2024-04-15 22:49:02 +03:00
|
|
|
<li><a href="https://pkg.go.dev/github.com/mjl-/mox/webapi/">Webapi & webhooks</a></li>
|
2024-01-10 18:48:53 +03:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<div class="main">
|
|
|
|
`
|
|
|
|
|
|
|
|
var after = `
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
<div class="meta">
|
|
|
|
<div><a href="https://github.com/mjl-/mox/issues/new?title=website:+">feedback?</a></div>
|
|
|
|
<div><span>[commit]</span></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
`
|
|
|
|
|
|
|
|
// Template for protocol page, minus the first section which is read from
|
|
|
|
// protocols/summary.md.
|
|
|
|
var protocolTemplate = htmltemplate.Must(htmltemplate.New("protocolsupport").Parse(`
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td><span class="implemented">Yes</span></td>
|
|
|
|
<td>All/most of the functionality of the RFC has been implemented.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class="partial">Partial</span></td>
|
|
|
|
<td>Some of the functionality from the RFC has been implemented.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class="roadmap">Roadmap</span></td>
|
|
|
|
<td>Implementing functionality from the RFC is on the roadmap.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class="notimplemented">No</span></td>
|
|
|
|
<td>Functionality from the RFC has not been implemented, is not currently on the roadmap, but may be in the future.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class="unknown">?</span></td>
|
|
|
|
<td>Status undecided, unknown or not applicable.</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<table class="rfcs">
|
|
|
|
<tr>
|
|
|
|
<th>RFC #</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th style="text-align: left">Title</th>
|
|
|
|
</tr>
|
|
|
|
{{ range .Topics }}
|
|
|
|
<tr>
|
|
|
|
<td colspan="3" style="font-weight: bold; padding: 3ex 0 1ex 0" id="topic-{{ .ID }}" class="topic">{{ .Title }} <a href="#topic-{{ .ID }}">#</a></td>
|
|
|
|
</tr>
|
|
|
|
{{ range .RFCs }}
|
|
|
|
<tr{{ if .Obsolete }} style="opacity: .3"{{ end }}>
|
|
|
|
<td style="text-align: right"><a href="../xr/dev/#code,rfc/{{ .Number }}">{{ .Number }}</a></td>
|
|
|
|
<td style="text-align: center"><span class="{{ .StatusClass }}">{{ .Status }}</span></td>
|
|
|
|
<td>{{ if .Obsolete }}Obsolete: {{ end }}{{ .Title }}</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</table>
|
|
|
|
`))
|