mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
parent
43e980c80f
commit
503b558643
5 changed files with 277 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue