mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
41 lines
790 B
Go
41 lines
790 B
Go
package maddy
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/emersion/maddy/config"
|
|
"github.com/emersion/maddy/module"
|
|
)
|
|
|
|
// Dummy is a struct that implements AuthProvider, DeliveryTarget and Filter
|
|
// interfaces but does nothing. Useful for testing.
|
|
type Dummy struct{ instName string }
|
|
|
|
func (d Dummy) CheckPlain(_, _ string) bool {
|
|
return true
|
|
}
|
|
|
|
func (d Dummy) Apply(_ *module.DeliveryContext, _ io.Reader) (io.Reader, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (d Dummy) Deliver(_ module.DeliveryContext, _ io.Reader) error {
|
|
return nil
|
|
}
|
|
|
|
func (d Dummy) Name() string {
|
|
return "dummy"
|
|
}
|
|
|
|
func (d Dummy) InstanceName() string {
|
|
return d.instName
|
|
}
|
|
|
|
func (d Dummy) Init(_ *config.Map) error {
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
module.Register("dummy", nil)
|
|
module.RegisterInstance(&Dummy{instName: "dummy"})
|
|
}
|