mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
fix: allow empty From address to match with TakeMsg
This commit is contained in:
parent
01ff37a9c5
commit
7c9138decf
1 changed files with 8 additions and 3 deletions
|
@ -107,10 +107,15 @@ func (s *Session) Reset() {
|
|||
}
|
||||
|
||||
func (s *Session) releaseLimits() {
|
||||
_, domain, err := address.Split(s.mailFrom)
|
||||
if err != nil {
|
||||
return
|
||||
domain := ""
|
||||
if s.mailFrom != "" {
|
||||
var err error
|
||||
_, domain, err = address.Split(s.mailFrom)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
addr, ok := s.msgMeta.Conn.RemoteAddr.(*net.TCPAddr)
|
||||
if !ok {
|
||||
addr = &net.TCPAddr{IP: net.IPv4(127, 0, 0, 1)}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue