maddy/msgpipeline/objname.go
fox.cpp af4f180503
msgpipeline: Allow to chain pipelines
This allows for some complex but useful configurations, such as making
decision on delivery target based on the result of per-destination
address rewriting. One example where that can be useful is aliasing
local address to a remote address in a way that can't make the server
an open relay.
2019-11-07 22:39:04 +03:00

26 lines
468 B
Go

package msgpipeline
import (
"fmt"
"github.com/foxcpp/maddy/module"
)
// objectName returns a new that is usable to identify the used external
// component (module or some stub) in debug logs.
func objectName(x interface{}) string {
mod, ok := x.(module.Module)
if ok {
if mod.InstanceName() == "" {
return mod.Name()
}
return mod.InstanceName()
}
_, pipeline := x.(*MsgPipeline)
if pipeline {
return "reroute"
}
return fmt.Sprintf("%T", x)
}