Redirecting multiple SSL accounts

Currently have SSL email working fine to my ISP using avast! and stunnel. Decided to see if I could add gmail account to be scanned by avast! also. Set up avast4.ini, stunnel.conf, and TB as before, using port 11111 instead of 11110, but get the error message shown. Nothing appears in stunnel log.

avast,ini looks like
[MailScanner]
StartPop=1
StartSmtp=1
StartImap=0
StartNntp=1
PopRedirectPort=11110,11111
SmtpRedirectPort=11025,11026
ImapRedirectPort=143
NntpRedirectPort=119
IgnoreAddress=
IgnoreLocalhost=0
AutoRedirect=1
ShowTrayIcon=1

stunnel.conf looks like

We’re running as a client to SSLify the POP connection

client=yes

POP3 service, listens on localhost:11110

[dslx-pop3s]
accept=localhost:11110
connect:995=mail.dslextreme.com

SMTP service, listens on localhost:11025

[dslx-smtps]
protocol=smtp
accept=localhost:11025
connect:25=smtp.dslextreme.com

;client=yes (removed in edit)

POP3 service, listens on localhost:11111

[gmail-pop3s]
accept=localhost:11111
connect:995=pop.gmail.com

SMTP service, listens on localhost:11026

[gmail-smtps]
protocol=smtp
accept=localhost:11026
connect:587=smtp.gmail.com

TB server setup is as shown

Is the current avast! unable to redirect multiple ports like this or is there an error in the setup? Firewall log shows things deadend at avast! and never get to stunnel.

Found the problem. Need to terminate and restart stunnel to get the new configuration accepted. And the second “client=yes” is improper syntax and needs to be removed. Another note for the FAQ.

Corrected stunnel.conf above