mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
endpoint/smtp: Allow to run filters before session init
Mostly used for checks that indicate 'obviously malicious' clients so it is preferable to immediately reject all commands without session initialization and running other checks.
This commit is contained in:
parent
cab2b090e9
commit
691f4ae429
3 changed files with 55 additions and 13 deletions
|
@ -50,6 +50,22 @@ func New(globals map[string]interface{}, cfg []config.Node) (*MsgPipeline, error
|
|||
}, err
|
||||
}
|
||||
|
||||
func (d *MsgPipeline) RunEarlyChecks(state *smtp.ConnectionState) error {
|
||||
// TODO: See if there is some point in parallelization of this
|
||||
// function.
|
||||
for _, check := range d.globalChecks {
|
||||
earlyCheck, ok := check.(module.EarlyCheck)
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
|
||||
if err := earlyCheck.CheckConnection(state); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Start starts new message delivery, runs connection and sender checks, sender modifiers
|
||||
// and selects source block from config to use for handling.
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue