mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
fix: make tls_client
configuration work in target.smtp
block
This commit is contained in:
parent
01c65cfb0e
commit
0e953a824b
2 changed files with 4 additions and 4 deletions
|
@ -57,7 +57,7 @@ type Downstream struct {
|
|||
hostname string
|
||||
endpoints []config.Endpoint
|
||||
saslFactory saslClientFactory
|
||||
tlsConfig tls.Config
|
||||
tlsConfig *tls.Config
|
||||
|
||||
connectTimeout time.Duration
|
||||
commandTimeout time.Duration
|
||||
|
@ -229,9 +229,9 @@ func (d *delivery) connect(ctx context.Context) error {
|
|||
for _, endp := range d.u.endpoints {
|
||||
var err error
|
||||
if d.u.lmtp {
|
||||
_, err = conn.ConnectLMTP(ctx, endp, d.u.starttls, &d.u.tlsConfig)
|
||||
_, err = conn.ConnectLMTP(ctx, endp, d.u.starttls, d.u.tlsConfig)
|
||||
} else {
|
||||
_, err = conn.Connect(ctx, endp, d.u.starttls, &d.u.tlsConfig)
|
||||
_, err = conn.Connect(ctx, endp, d.u.starttls, d.u.tlsConfig)
|
||||
}
|
||||
if err != nil {
|
||||
if len(d.u.endpoints) != 1 {
|
||||
|
|
|
@ -221,7 +221,7 @@ func TestDownstreamDelivery_StartTLS(t *testing.T) {
|
|||
Port: testPort,
|
||||
},
|
||||
},
|
||||
tlsConfig: *clientCfg.Clone(),
|
||||
tlsConfig: clientCfg.Clone(),
|
||||
starttls: true,
|
||||
log: testutils.Logger(t, "target.smtp"),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue