Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kingster/connekt-smtp
📫 SMTP Interface for Connekt
https://github.com/kingster/connekt-smtp
connekt email-relay email-server go-smtp smtp
Last synced: about 3 hours ago
JSON representation
📫 SMTP Interface for Connekt
- Host: GitHub
- URL: https://github.com/kingster/connekt-smtp
- Owner: kingster
- Created: 2017-03-25T22:38:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T07:30:33.000Z (almost 2 years ago)
- Last Synced: 2024-11-17T13:50:10.590Z (2 months ago)
- Topics: connekt, email-relay, email-server, go-smtp, smtp
- Language: Go
- Homepage:
- Size: 57.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# connekt-smtp
SMTP Interface for Connekt## Installation
This depends on `systemd (>= 240-1~)` so if you are on debian 9 you need to install it via backports.
```
apt install systemd -t stretch-backports
```After that you can do a normal installation
```
# if installing directly via deb
apt install ./connekt-smtp.deb# or via any repo
apt install connekt-smtp
```## Configuration
You need to configure connekt endpoint and few other things
open `/etc/default/csmtp` in your favorite editor and make changes as per your need
```
API_ENDPOINT="http://127.0.0.1/v2/send/email/"
DEFAULT_APP="outbound"
ADDR="0.0.0.0:25"
```## Restarting Service
```
service connekt-smtp (stop|start|status)
```