๐ See the live documentation site at https://docs.postalserver.io
Postal is a complete and fully-featured mail server for use by websites and web servers. Think of Sendgrid, Mailgun, or Postmark, but open source and ready for you to run on your own servers. Postal was developed by aTech Media to serve its own mail processing requirements, and we have since decided that it should be released as an open-source project for the community. It was originally launched by us as AppMail but was renamed to Postal as part of making it open source because we felt the name was more suitable.
This repository hosts the documentation for Postal only. If you are looking for the GitHub repository for the application source code, go to the open-source repository for Postal โ
Contributions are welcome! Please open up a pull request that clearly describes your intentions.
This site runs on Nuxt Content. Please review their documentation to understand how this framework works.
Follow these steps to get the site running on your local machine.
- Node 18 or newer
- PNPM installed for package management.
We advise you to use NVM to manage node versions and enable PNPM using corepack.
NVM Setup
Change to the project directory
cd /path/to/postal-docs
Install the correct Node version
nvm install
Use the correct Node version
nvm use
Enable PNPM
PNPM is available by default; you just need to enable corepack.
corepack enable pnpm
Change to the project directory
cd /path/to/postal-docs
Install the Node dependencies using PNPM.
pnpm install
Start the development server on http://localhost:3000
Note
If you see a warning about a "Missing NUXT_UI_PRO_LICENSE
", you can ignore that message. This is only used in production.
pnpm dev
Your local development environment is now running. You can view the site at http://localhost:3000. Any changes you make to the content will be automatically reflected in the browser once you save the file.
This documentation uses Nuxt Content and works on the following key concepts:
- Content is stored as markdown files in the
/content
folder. - Pages are sorted by the number at the beginning of their MD file.
- Pages need to have a title and description as their metadata.
- You can use any Nuxt UI and Nuxt UI Pro prose component.
---
title: Feature List
description: 'This is a list of features (in no particular order) of things that Postal can do.'
---
# Feature List
Here you can write your content.
...