Solved Clearing or Update Postfix Verify Cache

I am still dealing with self inflicted issued when I updated to FreeBSD 14,1 and the associated update to Postfix 3.9 I sort of became aware of the end of support for btree and changed these lines in master.cf from

smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache


to.
smtpd_tls_session_cache_database = lmdb:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = lmdb:${data_directory}/smtp_scache

I have reloaded Postfix even rebooted the server but the postfix/verify database keeps giving the old reference

postfix/verify[19776]: warning: btree:/var/db/postfix/verify_cache is unavailable. open database /var/db/postfix/verify_cache.db: Inappropriate file type or format

Can I update btree:/var/db/postfix/verify_cache or am I misunderstanding the error?
 
Several Steps resolved this.
1. added. "address_verify_map = hash:/var/db/postfix/verify"
Ran. these commands

# rm -f /var/db/postfix/verify.db
# postfix reload

Did come other cleaning and things see to be working ok.
 
Back
Top