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

Compare commits

..

10 Commits

Author SHA1 Message Date
James Hillyerd
30d8d6c64f Merge branch 'release/2.0.0' 2018-05-05 10:17:19 -07:00
James Hillyerd
37361e08e8 Change log release prep 2018-05-05 10:13:20 -07:00
James Hillyerd
2ceb510f70 Update change log 2018-05-05 10:08:40 -07:00
James Hillyerd
62fa52f42c log: disable color output on windows, closes #93 2018-05-05 09:57:01 -07:00
James Hillyerd
568474da32 travis: back to 1.10.x 2018-05-05 09:36:46 -07:00
evilmrburns
562332258d Fix INBUCKET_STORAGE_PARAMS example (#95) 2018-04-21 10:02:45 -07:00
evilmrburns
941b682197 Fix INBUCKET_STORAGE_PARAMS example (#95) 2018-04-21 10:01:10 -07:00
James Hillyerd
7fc5e06517 travis: install rpm 2018-04-07 20:35:37 -07:00
James Hillyerd
704ba04c51 travis: specify go 1.10.1 2018-04-07 20:35:19 -07:00
James Hillyerd
8a30b9717e Merge tag 'v2.0.0-rc1' into develop
v2.0.0-rc1 see CHANGELOG.md
2018-04-07 19:36:34 -07:00
3 changed files with 10 additions and 3 deletions

View File

@@ -4,7 +4,13 @@ Change Log
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## [2.0.0-rc1] - 2018-04-07 ## [v2.0.0] - 2018-05-05
### Changed
- Corrected docs for INBUCKET_STORAGE_PARAMS (thanks evilmrburns.)
- Disabled color log output on Windows, doesn't work there.
## [v2.0.0-rc1] - 2018-04-07
### Added ### Added
- Inbucket is now configured using environment variables instead of a config - Inbucket is now configured using environment variables instead of a config
@@ -154,6 +160,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
specific message. specific message.
[Unreleased]: https://github.com/jhillyerd/inbucket/compare/master...develop [Unreleased]: https://github.com/jhillyerd/inbucket/compare/master...develop
[v2.0.0]: https://github.com/jhillyerd/inbucket/compare/v2.0.0-rc1...v2.0.0
[v2.0.0-rc1]: https://github.com/jhillyerd/inbucket/compare/v1.3.1...v2.0.0-rc1 [v2.0.0-rc1]: https://github.com/jhillyerd/inbucket/compare/v1.3.1...v2.0.0-rc1
[v1.3.1]: https://github.com/jhillyerd/inbucket/compare/v1.3.0...v1.3.1 [v1.3.1]: https://github.com/jhillyerd/inbucket/compare/v1.3.0...v1.3.1
[v1.3.0]: https://github.com/jhillyerd/inbucket/compare/v1.2.0...v1.3.0 [v1.3.0]: https://github.com/jhillyerd/inbucket/compare/v1.2.0...v1.3.0

View File

@@ -181,7 +181,7 @@ func openLog(level string, logfile string, json bool) (close func(), err error)
} }
close = func() {} close = func() {}
var w io.Writer var w io.Writer
color := true color := runtime.GOOS != "windows"
switch logfile { switch logfile {
case "stderr": case "stderr":
w = os.Stderr w = os.Stderr

View File

@@ -373,7 +373,7 @@ Parameters specific to the storage type selected. Formatted as a comma
separated list of key:value pairs. separated list of key:value pairs.
- Default: None - Default: None
- Examples: `maxkb=10240` or `path=/tmp/inbucket` - Examples: `maxkb:10240` or `path:/tmp/inbucket`
#### `file` type parameters #### `file` type parameters