mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
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.
26 lines
468 B
Go
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)
|
|
}
|