auth/dovecot_sasl: Remove e.Path check altogether

Unix sockets have e.Path, TCP sockets don't.
This commit is contained in:
fox.cpp 2022-02-16 20:33:25 +03:00
parent b77766438d
commit 7f4438a8a3
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -101,9 +101,6 @@ func (a *Auth) Init(cfg *config.Map) error {
if err != nil {
return fmt.Errorf("%s: invalid server endpoint: %v", modName, err)
}
if endp.Path != "" {
return fmt.Errorf("%s: unexpected path in endpoint ", modName)
}
// Dial once to check usability and also to get list of mechanisms.
conn, err := net.Dial(endp.Scheme, endp.Address())