- HTML 47.8%
- CSS 27%
- C# 23%
- JavaScript 1.3%
- Dockerfile 0.9%
|
All checks were successful
Build and Deploy WebClient / build-and-push (push) Successful in 3s
Reviewed-on: #2 |
||
|---|---|---|
| .forgejo/workflows | ||
| .github/ISSUE_TEMPLATE | ||
| assets | ||
| src | ||
| .gitignore | ||
| .repomixignore | ||
| AGENTS.md | ||
| docker-compose.yml | ||
| GEMINI.md | ||
| LICENSE | ||
| README.md | ||
| repomix.config.json | ||
Postix
Postix is a simple administration tool tailored for your vmail server (Dovecot, Postfix, MySQL).
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
About The Project
Postix is a web interface for managing your vmail server (Dovecot, Postfix, MySQL). You can add, edit, and delete domains, accounts, and aliases.
The application consists of a REST API, a Blazor front-end and two databases. One database is a PostgreSQL which acts as the Postix application database, while the other is the vmail database which holds the mail server configurations.
Project Structure
src/
├── Postix.sln
├── DataClasses/ # Logic-less POCOs
├── DomainManagement.Contract/ # Domain interfaces
├── DomainManagement/ # Domain logic
├── AccountManagement.Contract/
├── AccountManagement/
├── AliasManagement.Contract/
├── AliasManagement/
├── VmailDataStoring.Contract/ # Persistence interfaces
├── VmailDataStoring/ # EF Core repositories
├── Workflows.Contract/ # Workflow interfaces
├── Workflows/ # Business process orchestration
├── DiMappings/ # Dependency injection
├── ServiceClient/ # REST API (ASP.NET Core)
└── WebClient/ # Blazor UI
Getting Started
-
Clone the repo
git clone https://github.com/to-wer/Postix.git -
Create
appsettings.Development.jsonwith local configuration -
Start databases with Docker Compose:
docker-compose up -d -
Build the solution:
cd src dotnet build Postix.sln
Build & Run
REST API (ServiceClient)
dotnet run --project src/ServiceClient/ServiceClient.csproj
Blazor UI (WebClient)
dotnet run --project src/WebClient/WebClient.csproj
Publish WebClient (Docker)
docker build -t postix-webclient -f src/WebClient/Dockerfile src/
Technology Stack
- .NET 10.0
- C# 13
- ASP.NET Core
- Blazor
- Entity Framework Core
- Tabler.io
- PostgreSQL
- MySQL
Roadmap
- Entra-ID Authentication
See the open issues for a full list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE.txt for more information.
Contact
Torsten Werner - @TorstenWerner10 - tw@to-wer.dev
Project Link: https://github.com/to-wer/Postix