maddy/modify/dkim/dkim_test.go
fox.cpp beef9e2455
Implement DKIM signing support
This support is based on github.com/foxcpp/go-msgauth fork until
emerison/go-msgauth#13 gets merged.

Further extensions are required to make sure only messages we can
actually "take responsibility for" are signed.

RSA-2048 is used as a default algorithm when generating new keys.
RSA-4096 can cause trouble with UDP-only DNS due to responses being
bigger than 512 octets. RSA-1024 is too weak and explicitly
disallowed in maddy for new keys. It could be possible to use Ed25519
but support is not widely deployed yet (according to warning in rspamd
docs dated 2019-09). Users concerned about security of RSA-2048 can
switch to RSA-4096 or Ed25519, keeping relevant problems in mind.

Ed25519 key format uses PKCS#8, this seems to be different from other
implementations that just dump key material into a file without any
wrapping. Interoperability is not considered to encourage key
rotation when migration, which is a good thing to do anyway.

There is no option to use "body limit", since it is dangerous
and go-msgauth/dkim does not support it for signing.

The default set of signed header fields is the list used by rspamd.
Most "core" fields are oversigned to provide strict integrity.
"Conditional oversigning" similar to rspamd is not implemented, though
it may be useful, further research is required.

Multi-tentant configuration with DKIM and DMARC is much more verbose,
configuration example is added to config.d/multitentant-dkim.conf to
explain how to make it work.
2019-10-27 20:40:38 +03:00

34 lines
704 B
Go

package dkim
import (
"reflect"
"sort"
"testing"
"github.com/emersion/go-message/textproto"
)
// TODO: Add tests that check actual signing once
// we have LookupTXT hook for go-msgauth/dkim.
func TestFieldsToSign(t *testing.T) {
h := textproto.Header{}
h.Add("A", "1")
h.Add("c", "2")
h.Add("C", "3")
h.Add("a", "4")
h.Add("b", "5")
h.Add("unrelated", "6")
m := Modifier{
oversignHeader: []string{"A", "B"},
signHeader: []string{"C"},
}
fields := m.fieldsToSign(h)
sort.Strings(fields)
expected := []string{"A", "A", "A", "B", "B", "C", "C"}
if !reflect.DeepEqual(fields, expected) {
t.Errorf("incorrect set of fields to sign\nwant: %v\ngot: %v", expected, fields)
}
}