list

server

This is the main dovel repository, it has the Go code to run dovel SMTP server.

curl https://dovel.email/server.tar tar

9edf311

Author: x (x@mail.blmayer.dev)

Date: Mon Jun 19 00:39:17 2023 -0300

Parent: 5f083f9

Added dark mode to index page

Diff

index.html

commit 9edf311d6ed2cf0fe20b93bb0aece740bd657225
Author: x <x@mail.blmayer.dev>
Date:   Mon Jun 19 00:39:17 2023 -0300

    Added dark mode to index page

diff --git a/index.html b/index.html
index a25ccee..117981c 100644
--- a/index.html
+++ b/index.html
@@ -4,13 +4,13 @@
 	<title>dovel email</title>
 	<meta charset="UTF-8">
 	<meta name="author" content="Brian Lee Mayer">
-	<meta name="description" content="Dovel is a simple and extensible SMTP server written in Go. Send and receive email using a self hosted instance with minimum configuration. Dovel is free and open source software.">
+	<meta name="description" content="Dovel is a simple and extensible SMTP server that let's you send and receive email using a self hosted instance with minimum configuration. Dovel is free and open source software written in Go.">
 	<meta name="language" content="english">
 	<meta name="keywords" content="email, dovel, blmayer, self host, software, smtp, web, interface">
 	<meta name="viewport" content="width=device-width, initial-scale=1">
+	<meta name="color-scheme" content="light dark">
 	<style>
 body {
-	background: floralwhite;
 	max-width: 600px;
 	margin: 60px auto;
 	padding: 20px;
@@ -31,6 +31,11 @@ ol li {
 tt {
 	font-weight: bold;
 }
+
+@media (prefers-color-scheme: dark) {
+	pre {
+		background: darkslategray;
+}
 	</style>
 </head>
 <body>