The mda-lmtp tests are missing a file in the repository, which causes the test to fail. This went unnoticed because they are not included in the automated test suite, which will be fixed in a follow-up patch. This patch adds the mising test file, with a harder to miss name.
33 lines
407 B
Plaintext
33 lines
407 B
Plaintext
|
|
nc tcp_listen localhost:14932
|
|
|
|
mda |= ./mda-lmtp --addr=localhost:14932 -f from -d to < test-email
|
|
|
|
nc -> 220 Hola desde expect
|
|
|
|
nc <~ LHLO .*
|
|
nc -> 250-Bienvenido!
|
|
nc -> 250 Contame...
|
|
|
|
nc <- MAIL FROM:<from>
|
|
nc -> 250 Aja
|
|
|
|
nc <- RCPT TO:<to>
|
|
nc -> 250 Aja
|
|
|
|
nc <- DATA
|
|
nc -> 354 Dale
|
|
|
|
nc <- Subject: test
|
|
nc <-
|
|
nc <- This is a test.
|
|
nc <- .
|
|
|
|
nc -> 250 Recibido
|
|
|
|
nc <- QUIT
|
|
nc -> 221 Chauchas
|
|
|
|
mda wait 0
|
|
|