1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00
Files
go-chasquid-smtp/.gitignore
Alberto Bertogli e9c6775418 test: Remove dependency on wget
This patch removes the dependency on wget for fetching content over
http, which was used in one of the tests to do some checking on debug
and metric pages, as well as loop detection.

Instead of wget, we now use a small built-in utility called fexp.
2020-11-12 23:24:21 +00:00

41 lines
1002 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
# The binaries.
/chasquid
/chasquid-util
/smtp-check
/spf-check
/mda-lmtp
/dovecot-auth-cli
cmd/chasquid-util/chasquid-util
cmd/smtp-check/smtp-check
cmd/spf-check/spf-check
cmd/mda-lmtp/mda-lmtp
cmd/dovecot-auth-cli/dovecot-auth-cli
test/util/minidns
test/util/fexp
# Test binary, generated during coverage tests.
chasquid.test
# Exclude any .pem files, to prevent accidentally including test keys and
# certificates.
*.pem
# Ignore the generated corpus: we don't want to commit it to the repository by
# default, to avoid size blowup. Manually added corpus will begin with "t-",
# and thus not ignored.
# Leave crashers not ignored, to make them easier to spot (and they should be
# moved to manually-added corpus once detected).
**/testdata/fuzz/corpus/[0-9a-f]*
# go-fuzz build artifacts.
*-fuzz.zip