mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
mda-lmtp is a very basic MDA that uses LMTP to do the mail delivery. It takes command line arguments similar to maildrop or procmail, reads an email via standard input, and sends it over the given LMTP server. Supports connecting to LMTP servers over UNIX sockets and TCP. Since chasquid does not support direct LMTP local delivery, this can be used as a workaround instead. Example of use: $ mda-lmtp --addr localhost:1234 -f juan@casa -d jose < email
24 lines
468 B
Plaintext
24 lines
468 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
|
|
cmd/chasquid-util/chasquid-util
|
|
cmd/smtp-check/smtp-check
|
|
cmd/spf-check/spf-check
|
|
cmd/mda-lmtp/mda-lmtp
|
|
|
|
# Exclude any .pem files, to prevent accidentally including test keys and
|
|
# certificates.
|
|
*.pem
|