1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00

Moved inbucketd to main to make building easier

Updated README.md with a install procedure that actually works
This commit is contained in:
James Hillyerd
2012-10-21 14:47:41 -07:00
parent 3650b93de7
commit 01955d3cb2
2 changed files with 13 additions and 4 deletions

View File

@@ -38,10 +38,19 @@ Installation
------------ ------------
You will need a functioning [Go installation][1] for this to work. You will need a functioning [Go installation][1] for this to work.
# From the base of your GOPATH... Grab the Inbucket source code and compile the daemon:
go get github.com/jhillyerd/inbucket
go build github.com/jhillyerd/inbucket go get -v github.com/jhillyerd/inbucket
bin/inbucketd src/github.com/jhillyerd/inbucket/conf/inbucket.conf go get -v github.com/gorilla/mux
go get -v github.com/gorilla/sessions
go get -v thegoods.biz/httpbuf
cd $GOPATH/src/github.com/jhillyerd/inbucket
go build main/inbucketd.go
Edit conf/inbucket.conf and tailor to your environment. It should work on most
Unix and OS X machines as is.
./inbucketd conf/inbucket.conf
By default the SMTP server will be listening on localhost port 2500 and By default the SMTP server will be listening on localhost port 2500 and
the web interface will be available at [localhost:9000](http://localhost:9000/). the web interface will be available at [localhost:9000](http://localhost:9000/).