Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 821 Bytes

Readme.md

File metadata and controls

38 lines (33 loc) · 821 Bytes

Postfix Virtual Alias Manager

Description

View, create, delete and search aliases in your postfix alias database

Alt text

Build

Windows (CMD)
git clone https://github.com/guitarmarx/postfix_virtual_alias_manager.git
cd postfix_virtual_alias_manager
set GOOS=windows
set GOARCH=amd64
go build
Linux
git clone https://github.com/guitarmarx/postfix_virtual_alias_manager.git
cd postfix_virtual_alias_manager
GOOS=windows GOARCH=amd64 go build

Configuration

Create conf.json in the directory where the executable is located Content:

{
    "ServerPort": "8000",
    "DbHost": "<Host>",
    "DbPort": "<port>",
    "DbUser": "<user>",
    "DbPassword": "<password>",
    "DbName": "postfix",
    "AliasTableName": "virtual_aliases"
}