Skip to content

Commit

Permalink
Update URLs for inbucket Github org
Browse files Browse the repository at this point in the history
  • Loading branch information
jhillyerd committed Nov 10, 2018
1 parent 022a1aa commit 17dc2d4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Docker build file for fauxmailer
# https://github.com/jhillyerd/fauxmailer
# https://github.com/inbucket/fauxmailer

# Build
FROM golang:1.11-alpine3.8 as builder
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fauxmailer
=============================================================================
[![Build Status](https://travis-ci.org/jhillyerd/fauxmailer.svg?branch=master)](https://travis-ci.org/jhillyerd/fauxmailer)
[![Build Status](https://travis-ci.org/inbucket/fauxmailer.svg?branch=master)](https://travis-ci.org/inbucket/fauxmailer)

fauxmailer will generate random emails, and send them via SMTP.

Expand All @@ -15,7 +15,7 @@ The initial goal for this project is to populate a demo instance of
-host string
host:port of SMTP server (default "localhost:25")
-signature string
signature (default "Generated by https://github.com/jhillyerd/fauxmailer")
signature (default "Generated by https://github.com/inbucket/fauxmailer")
-silent
disable to/from address log
-tofile string
Expand Down Expand Up @@ -67,7 +67,7 @@ Example of fauxmailer output with `-verbose` flag:
Beer, Weissnat and Boyle, "Sharable incremental synergy"

--
Generated by https://github.com/jhillyerd/fauxmailer
Generated by https://github.com/inbucket/fauxmailer

--enmime-389602d4-f07c-413e-a30c-2b48e73db32f
Content-Type: text/html; charset=utf-8
Expand All @@ -78,33 +78,33 @@ Example of fauxmailer output with `-verbose` flag:
<p>Facilis ubi calculus dolorum. Et aer usus aut quod vulgo adnuo nesciunt. Thalassinus cumque voluptatem culpa.</p>
<p>Stewart Kilback &lt;<a href="mailto:jakob@powlowskihowell.net">jakob@powlowskihowell.net</a>&gt;, Senior Marketing Architect<br>
<b>Beer, Weissnat and Boyle</b>, <em>Team-oriented discrete initiative</em></p>
<p><small>Generated by https://github.com/jhillyerd/fauxmailer</small></p>
<p><small>Generated by https://github.com/inbucket/fauxmailer</small></p>

--enmime-389602d4-f07c-413e-a30c-2b48e73db32f--


## Docker

Docker Hub automated build available at
[jhillyerd/fauxmailer](https://hub.docker.com/r/jhillyerd/fauxmailer/)
[inbucket/fauxmailer](https://hub.docker.com/r/inbucket/fauxmailer/)

- `jhillyerd/fauxmailer:stable` tracks branch `master`
- `jhillyerd/fauxmailer:latest` tracks branch `develop`
- `inbucket/fauxmailer:stable` tracks branch `master`
- `inbucket/fauxmailer:latest` tracks branch `develop`

## Building from Source

You will need a functioning [Go installation][Google Go] for this to work.

Grab the fauxmailer source code and compile the executable:

go get -v github.com/jhillyerd/fauxmailer
go get -v github.com/inbucket/fauxmailer

## About

fauxmailer is written in [Google Go]

fauxmailer is open source software released under the MIT License. The latest
version can be found at https://github.com/jhillyerd/fauxmailer
version can be found at https://github.com/inbucket/fauxmailer

[Google Go]: http://golang.org/
[Inbucket]: http://www.inbucket.org/
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/jhillyerd/fauxmailer
module github.com/inbucket/fauxmailer

require (
github.com/jhillyerd/enmime v0.3.0
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package main (fauxmailer) generates fake emails and sends them via SMTP
package main // import "github.com/jhillyerd/fauxmailer"
package main // import "github.com/inbucket/fauxmailer"

import (
"bufio"
Expand All @@ -22,7 +22,7 @@ var (
host = flag.String("host", "localhost:25", "host:port of SMTP server")
signature = flag.String(
"signature",
"Generated by https://github.com/jhillyerd/fauxmailer",
"Generated by https://github.com/inbucket/fauxmailer",
"signature")
silent = flag.Bool("silent", false, "disable to/from address log")
tofile = flag.String("tofile", "", "optional file containing newline separated To addresses")
Expand Down

0 comments on commit 17dc2d4

Please sign in to comment.