From 7299e3566372c64f4e1b758fbf049e80b45d6606 Mon Sep 17 00:00:00 2001
From: Naomi Carrigan <commits@nhcarrigan.com>
Date: Sun, 23 Feb 2025 11:50:46 -0800
Subject: [PATCH] feat: add landing page for mail server

---
 mail/index.html | 20 ++++++++++++++++++++
 sync.sh         |  5 ++++-
 2 files changed, 24 insertions(+), 1 deletion(-)
 create mode 100644 mail/index.html

diff --git a/mail/index.html b/mail/index.html
new file mode 100644
index 0000000..ec39103
--- /dev/null
+++ b/mail/index.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <title>Mail Server</title>
+    <meta charset="utf-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1" />
+    <meta name="description" content="This is our landing page for our mail server." />
+    <script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
+  </head>
+  <body>
+    <main>
+    <h1>Mail Server</h1>
+    <section>
+      <p>This is our landing page for our mail server.</p>
+      <p>There's really nothing to see here. Maybe you were interested in <a href="https://contact.nhcarrigan.com">contacting us</a>?</p>
+      <p>We also offer <a href="https://chat.nhcarrigan.com">self-hosted platforms</a> where you can get in touch.</p>
+    </section>
+    </main>
+  </body>
+</html>
\ No newline at end of file
diff --git a/sync.sh b/sync.sh
index bc2e899..33f9072 100755
--- a/sync.sh
+++ b/sync.sh
@@ -4,4 +4,7 @@ dirs=("bsky" "chat" "games" "link-redirector" "resume" "testimonials" "manual");
 
 for dir in "${dirs[@]}"; do
   rsync -av $dir prod:/home/nhcarrigan
-done
\ No newline at end of file
+  echo "Synced $dir"
+done
+
+echo "mail/index.html must be manually synced to mail:/home/user-data/www/default by a user with sudo access."
\ No newline at end of file