ispmail-workaround-org/src/components/StepListReceive.astro

18 lines
515 B
Text

---
import StepList from "./StepList.astro";
const { currentStep } = Astro.props;
---
<StepList
title="Todo list for receiving emails"
steps={[
{ title: "DNS records point to your server" },
{ title: "Get a certificate from Let's Encrypt" },
{ title: "Postfix fetches information from MariaDB" },
{ title: "Dovecot fetches information from MariaDB" },
{ title: "Postfix hands over emails to Dovecot" },
{ title: "Dovecot saves the email to disk" },
]}
currentStep={currentStep}
/>