553 Relaying disallowed

553 Relaying disallowed

I have an email address at Zoho, webmaster@bluenote9.com, and I’m trying to relay outgoing mail from a Debian Linux system via postfix and stunnel to Zoho, but Zoho is replying "553 Relaying disallowed as webmaster@bluenote9.com”.

Here are the relevant parts of the Debian configuration:

# /etc/postfix/main.cf:
debug_peer_list = 127.0.0.1
mydestination = zoho.com, localhost.localdomain, localhost
relayhost = [127.0.0.1]:11125
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
smtp_use_tls = no
sender_canonical_maps = hash:/etc/postfix/canonical

# /etc/postfix/canonical

# /etc/stunnel/stunnel.conf
[smtp-tls-wrapper]
accept=11125
client=yes
connect = smtp.zoho.com:465
TIMEOUTconnect = 60

What needs to happen for this to work?

Many thanks!