Merge remote-tracking branch 'origin/master' into idle-responses
This commit is contained in:
commit
5e3f087007
4 changed files with 6 additions and 6 deletions
|
|
@ -99,8 +99,8 @@ running](http://www.icegreen.com/greenmail/#deploy_docker_standalone). The
|
||||||
easiest way to do that is with Docker:
|
easiest way to do that is with Docker:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker pull greenmail/standalone:1.6.2
|
$ docker pull greenmail/standalone:1.6.3
|
||||||
$ docker run -t -i -e GREENMAIL_OPTS='-Dgreenmail.setup.test.all -Dgreenmail.hostname=0.0.0.0 -Dgreenmail.auth.disabled -Dgreenmail.verbose' -p 3025:3025 -p 3110:3110 -p 3143:3143 -p 3465:3465 -p 3993:3993 -p 3995:3995 greenmail/standalone:1.6.2
|
$ docker run -t -i -e GREENMAIL_OPTS='-Dgreenmail.setup.test.all -Dgreenmail.hostname=0.0.0.0 -Dgreenmail.auth.disabled -Dgreenmail.verbose' -p 3025:3025 -p 3110:3110 -p 3143:3143 -p 3465:3465 -p 3993:3993 -p 3995:3995 greenmail/standalone:1.6.3
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@ running](http://www.icegreen.com/greenmail/#deploy_docker_standalone). The
|
||||||
easiest way to do that is with Docker:
|
easiest way to do that is with Docker:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker pull greenmail/standalone:1.6.2
|
$ docker pull greenmail/standalone:1.6.3
|
||||||
$ docker run -t -i -e GREENMAIL_OPTS='-Dgreenmail.setup.test.all -Dgreenmail.hostname=0.0.0.0 -Dgreenmail.auth.disabled -Dgreenmail.verbose' -p 3025:3025 -p 3110:3110 -p 3143:3143 -p 3465:3465 -p 3993:3993 -p 3995:3995 greenmail/standalone:1.5.9
|
$ docker run -t -i -e GREENMAIL_OPTS='-Dgreenmail.setup.test.all -Dgreenmail.hostname=0.0.0.0 -Dgreenmail.auth.disabled -Dgreenmail.verbose' -p 3025:3025 -p 3110:3110 -p 3143:3143 -p 3465:3465 -p 3993:3993 -p 3995:3995 greenmail/standalone:1.6.3
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ resources:
|
||||||
endpoint: jonhoo
|
endpoint: jonhoo
|
||||||
containers:
|
containers:
|
||||||
- container: greenmail
|
- container: greenmail
|
||||||
image: greenmail/standalone:1.6.2
|
image: greenmail/standalone:1.6.3
|
||||||
ports:
|
ports:
|
||||||
- 3025:3025
|
- 3025:3025
|
||||||
- 3110:3110
|
- 3110:3110
|
||||||
|
|
|
||||||
|
|
@ -326,7 +326,7 @@ pub fn parse_ids(
|
||||||
lines: &[u8],
|
lines: &[u8],
|
||||||
unsolicited: &mut mpsc::Sender<UnsolicitedResponse>,
|
unsolicited: &mut mpsc::Sender<UnsolicitedResponse>,
|
||||||
) -> Result<HashSet<u32>> {
|
) -> Result<HashSet<u32>> {
|
||||||
let mut lines = &lines[..];
|
let mut lines = lines;
|
||||||
let mut ids = HashSet::new();
|
let mut ids = HashSet::new();
|
||||||
loop {
|
loop {
|
||||||
if lines.is_empty() {
|
if lines.is_empty() {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue