mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 15:20:32 -04:00
MailSlurper is a small SMTP mail server that slurps mail into oblivion! MailSlurper is perfect for individual developers or small teams writing mail-enabled applications that wish to test email functionality without the risk or hassle of installing and configuring a full blown email server. It's simple to use! Simply setup MailSlurper, configure your code and/or application server to send mail through the address where MailSlurper is running, and start sending emails! MailSlurper will capture those emails into a database for you to view at your leisure. PR: 268242 Reported by: einar@isnic.is Tested by: bofh Approved by: einar@isnic.is (submitter is maintainer)
11 lines
345 B
Go
11 lines
345 B
Go
--- cmd/mailslurper/mailslurper.go.orig 2020-04-17 09:31:57 UTC
|
|
+++ cmd/mailslurper/mailslurper.go
|
|
@@ -14,7 +14,7 @@ import (
|
|
"syscall"
|
|
"time"
|
|
|
|
- "github.com/labstack/echo"
|
|
+ "github.com/labstack/echo/v4"
|
|
"github.com/mailslurper/mailslurper/pkg/mailslurper"
|
|
"github.com/mailslurper/mailslurper/pkg/ui"
|
|
"github.com/patrickmn/go-cache"
|