mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 15:36:35 -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)
26 lines
1,021 B
Modula-2
26 lines
1,021 B
Modula-2
--- go.mod.orig 2020-04-16 15:12:58 UTC
|
|
+++ go.mod
|
|
@@ -0,0 +1,23 @@
|
|
+module github.com/mailslurper/mailslurper
|
|
+
|
|
+go 1.13
|
|
+
|
|
+require (
|
|
+ github.com/adampresley/webframework v0.0.0-20200114004523-0c93acb6716f
|
|
+ github.com/denisenkom/go-mssqldb v0.0.0-20200206145737-bbfc9a55622e
|
|
+ github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
+ github.com/go-sql-driver/mysql v1.5.0
|
|
+ github.com/gorilla/sessions v1.2.0
|
|
+ github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a
|
|
+ github.com/labstack/echo-contrib v0.8.0
|
|
+ github.com/labstack/echo/v4 v4.1.14
|
|
+ github.com/mattn/go-sqlite3 v2.0.3+incompatible
|
|
+ github.com/microcosm-cc/bluemonday v1.0.2 // indirect
|
|
+ github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
|
|
+ github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
+ github.com/pkg/errors v0.9.1
|
|
+ github.com/sirupsen/logrus v1.4.2
|
|
+ github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
|
|
+ golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d
|
|
+ golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
|
|
+)
|