mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
Add a snapcraft.yaml file for building snaps (https://snapcraft.io) of MailHog
This commit is contained in:
parent
4946ba61bf
commit
a708f5dcea
1 changed files with 22 additions and 0 deletions
22
snapcraft.yaml
Normal file
22
snapcraft.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: mailhog
|
||||||
|
summary: Web and API based SMTP testing
|
||||||
|
description: |
|
||||||
|
MailHog is an email testing tool for developers:
|
||||||
|
* Configure your application to use MailHog for SMTP delivery
|
||||||
|
* View messages in the web UI, or retrieve them with the JSON API
|
||||||
|
* Optionally release messages to real SMTP servers for delivery
|
||||||
|
version: "master"
|
||||||
|
confinement: strict
|
||||||
|
grade: stable
|
||||||
|
apps:
|
||||||
|
mailhog:
|
||||||
|
command: MailHog
|
||||||
|
plugs: [network-bind]
|
||||||
|
daemon: simple
|
||||||
|
parts:
|
||||||
|
mailhog:
|
||||||
|
plugin: go
|
||||||
|
go-packages:
|
||||||
|
- github.com/mailhog/MailHog
|
||||||
|
build-packages:
|
||||||
|
- git
|
Loading…
Reference in a new issue