mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-16 14:27:01 +00:00
To send mails, today some tests use msmtp and others our internal smtpc.py. This works, but msmtp slows down the tests significantly, and smtpc.py is also not particularly fast, and also has some limitations. This patch introduces a new SMTP client tool written in Go, and makes almost all the tests use it. Some tests still remain on msmtp, mainly for client-check compatibility. It's likely that this will be moved in later patches to a separate special-purpose test. With this patch, integration tests take ~20% less time than before.
42 lines
844 B
Plaintext
42 lines
844 B
Plaintext
|
|
# Ignore anything beginning with a dot: these are usually temporary or
|
|
# unimportant.
|
|
.*
|
|
|
|
# Exceptions to the rules above: files we care about that would otherwise be
|
|
# excluded.
|
|
!.gitignore
|
|
!.clang-format
|
|
!.github/
|
|
|
|
# The binaries.
|
|
/chasquid
|
|
/chasquid-util
|
|
/smtp-check
|
|
/mda-lmtp
|
|
/dovecot-auth-cli
|
|
cmd/chasquid-util/chasquid-util
|
|
cmd/smtp-check/smtp-check
|
|
cmd/mda-lmtp/mda-lmtp
|
|
cmd/dovecot-auth-cli/dovecot-auth-cli
|
|
|
|
# Test util binaries.
|
|
test/util/conngen/conngen
|
|
test/util/coverhtml/coverhtml
|
|
test/util/fexp/fexp
|
|
test/util/generate_cert/generate_cert
|
|
test/util/gocovcat/gocovcat
|
|
test/util/loadgen/loadgen
|
|
test/util/minidns/minidns
|
|
test/util/smtpc/smtpc
|
|
|
|
# Test binary, generated during coverage tests.
|
|
chasquid.test
|
|
|
|
# chamuyero logs
|
|
*.cmy.log
|
|
|
|
# Exclude any .pem files, to prevent accidentally including test keys and
|
|
# certificates.
|
|
*.pem
|