aboutsummaryrefslogtreecommitdiff
path: root/incoming.go
blob: f915ac015a4d9fe53f92895b9757a78d56a6d469 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import "go.lindenii.runxiyu.org/lindenii-common/clog"

func deliver_incoming(envelope_from string, envelope_recipients []string, data []byte) {
	clog.Debug(
		"incoming_mail",
		"envelope_from", envelope_from,
		"envelope_recipients", envelope_recipients,
		"data", string(data),
	)
}