mirror of
https://github.com/chatmail/relay.git
synced 2026-05-11 08:24:37 +00:00
Compare commits
5 Commits
fix/multip
...
fix-echobo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c541447f9b | ||
|
|
aed3803d17 | ||
|
|
9787a43902 | ||
|
|
e525d36899 | ||
|
|
6bbb5e07e5 |
@@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## untagged
|
## untagged
|
||||||
|
|
||||||
|
- Accept Let's Encrypt's new Terms of Services
|
||||||
|
([#275](https://github.com/deltachat/chatmail/pull/276))
|
||||||
|
|
||||||
- Reload Dovecot and Postfix when TLS certificate updates
|
- Reload Dovecot and Postfix when TLS certificate updates
|
||||||
([#271](https://github.com/deltachat/chatmail/pull/271))
|
([#271](https://github.com/deltachat/chatmail/pull/271))
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import pytest
|
|||||||
import threading
|
import threading
|
||||||
import queue
|
import queue
|
||||||
import socket
|
import socket
|
||||||
|
import time
|
||||||
|
|
||||||
from chatmaild.config import read_config
|
from chatmaild.config import read_config
|
||||||
from cmdeploy.cmdeploy import main
|
from cmdeploy.cmdeploy import main
|
||||||
@@ -81,7 +82,14 @@ def test_concurrent_logins_same_account(
|
|||||||
assert login_results.get()
|
assert login_results.get()
|
||||||
|
|
||||||
|
|
||||||
def test_no_vrfy(chatmail_config):
|
def test_no_vrfy(chatmail_config, remote):
|
||||||
|
found = False
|
||||||
|
while not found:
|
||||||
|
for line in remote.iter_output(logcmd="journalctl -u echobot"):
|
||||||
|
print(line)
|
||||||
|
if "successfully logged into imap server" in line:
|
||||||
|
found = True
|
||||||
|
break
|
||||||
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
sock.connect((chatmail_config.mail_domain, 25))
|
sock.connect((chatmail_config.mail_domain, 25))
|
||||||
banner = sock.recv(1024)
|
banner = sock.recv(1024)
|
||||||
|
|||||||
Reference in New Issue
Block a user