Fix autoconf check for mailspool world write permission
authormarkus schnalke <meillo@marmaro.de>
Wed, 26 Aug 2015 19:36:54 +0000 (21:36 +0200)
committermarkus schnalke <meillo@marmaro.de>
Wed, 26 Aug 2015 19:36:54 +0000 (21:36 +0200)
commite2c8b0c495161c21c7bece0b4fc844542e0da212
tree8053fe13f963e218e78c8f55f981304825c3409d
parent1e9a7f8082f2ea4b496827be6b9ebbc4ac145839
Fix autoconf check for mailspool world write permission

This is a bugfix and improvement for commit b15b7cc (``Use
realpath to find the mailspool'').

We can even do this check much simpler, if we focus on the
problem that

        $lspath -dlL $mailspool

does not check the target of a symlink, although -L is given.
The contradicting -d seems to overrule it.

We can fix this more easily by appending a slash to the path:

        $ ls -ld /var/mail/
        drwxrwxr-t 2 root root 4096 Apr 29 06:36 /var/mail//

Without the slash it was:

        $ ls -ld /var/mail
        lrwxrwxrwx 1 root root 10 Nov 22  2011 /var/mail -> spool/mail/

This small change does it for one level of indirection.
This should be sufficient.
configure.ac