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:
fox.cpp 2019-11-02 19:14:07 +03:00
parent cab2b090e9
commit 691f4ae429
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
3 changed files with 55 additions and 13 deletions

View file

@ -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.
//