Hi,
I'd like to vote for this bug too.
The config as shown is deprecated, so it should be
smtp_tls_security_level = may
smtp_tls_session_cache_database = btree:/var/cache/postfix/smtp_scache
It would also be good to copy the CApath directory to the chroot
environment.
I usually add this to /etc/init.d/postfix:
-------
ca_path=$(postconf -h smtp_tls_CApath)
DIRS="${ca_path#/}"
for dir in $DIRS; do
[ -d ${dir} ] || mkdir -p ${dir}
if [ -d /${dir} ]; then rm -rf ${dir} && cp -r /${dir} ${dir}; fi
if [ -d ${dir} ]; then chmod -R a+rX ${dir}; fi
done
-------
Regards,
TT
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]