On Tue, Jan 28, 2020 at 08:27:53PM -0500, Hamid M. wrote: > > You also need symbolic link > > > > /var/spool/postfix/var/spool/postfix -> ../.. > > > > So that paths under /var/spool/postfix work the same way for > > both chrooted and not chrooted processes. > > Not sure how to go about doing this linking since I don't see any /var > folder wither /var/spool/postfix > > Something like: > cd /var/spool/postfix > ln -s ../.. var/spool/postfix
Naturally, you'd have to create the intermediate directories: # (umask 022; mkdir -p /var/spool/postfix/var/spool) # ln -s ../.. /var/spool/postfix/var/spool/postfix -- Viktor.