mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
/*
|
|
Maddy Mail Server - Composable all-in-one email server.
|
|
Copyright © 2019-2020 Max Mazurov <fox.cpp@disroot.org>, Maddy Mail Server contributors
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package table
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/foxcpp/maddy/framework/config"
|
|
"github.com/foxcpp/maddy/framework/module"
|
|
)
|
|
|
|
type Identity struct {
|
|
modName string
|
|
instName string
|
|
}
|
|
|
|
func NewIdentity(modName, instName string, _, _ []string) (module.Module, error) {
|
|
return &Identity{
|
|
modName: modName,
|
|
instName: instName,
|
|
}, nil
|
|
}
|
|
|
|
func (s *Identity) Init(cfg *config.Map) error {
|
|
return nil
|
|
}
|
|
|
|
func (s *Identity) Name() string {
|
|
return s.modName
|
|
}
|
|
|
|
func (s *Identity) InstanceName() string {
|
|
return s.modName
|
|
}
|
|
|
|
func (s *Identity) Lookup(_ context.Context, key string) (string, bool, error) {
|
|
return key, true, nil
|
|
}
|
|
|
|
func init() {
|
|
module.Register("table.identity", NewIdentity)
|
|
}
|