msgpipeline: Implement source_in, destination_in

Closes #138.
This commit is contained in:
fox.cpp 2020-05-04 15:25:47 +03:00
parent 43e980c80f
commit 503b558643
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
5 changed files with 277 additions and 1 deletions

View file

@ -46,10 +46,16 @@ type MsgPipeline struct {
Log log.Logger
}
type rcptIn struct {
t module.Table
block *rcptBlock
}
type sourceBlock struct {
checks []module.Check
modifiers modify.Group
rejectErr error
rcptIn []rcptIn
perRcpt map[string]*rcptBlock
defaultRcpt *rcptBlock
}
@ -184,6 +190,18 @@ func (dd *msgpipelineDelivery) srcBlockForAddr(mailFrom string) (sourceBlock, er
}
}
for _, srcIn := range dd.d.sourceIn {
_, ok, err := srcIn.t.Lookup(cleanFrom)
if err != nil {
dd.log.Error("source_in lookup failed", err, "key", cleanFrom)
continue
}
if !ok {
continue
}
return srcIn.block, nil
}
// First try to match against complete address.
srcBlock, ok := dd.d.perSource[cleanFrom]
if !ok {
@ -498,6 +516,18 @@ func (dd *msgpipelineDelivery) rcptBlockForAddr(rcptTo string) (*rcptBlock, erro
}
}
for _, rcptIn := range dd.sourceBlock.rcptIn {
_, ok, err := rcptIn.t.Lookup(cleanRcpt)
if err != nil {
dd.log.Error("destination_in lookup failed", err, "key", cleanRcpt)
continue
}
if !ok {
continue
}
return rcptIn.block, nil
}
// First try to match against complete address.
rcptBlock, ok := dd.sourceBlock.perRcpt[cleanRcpt]
if !ok {