On Wed, Feb 18, 2015 at 07:32:38AM -0800, Rich Shepard wrote: > On Wed, 18 Feb 2015, Wietse Venema wrote: > > >This suggests that you have a space in a pathname of some Postfix > >configuration pathname parameters such as queue_directory, > >command_directory, sendmail_path, and so on. > > Wietse, > > Here are all directory paths from main.cf; I deleted all other lines: > > queue_directory = /var/spool/postfix > command_directory = /usr/sbin > daemon_directory = /usr/libexec/postfix > data_directory = /var/lib/postfix > mail_spool_directory = /var/spool/mail > mailbox_command = /usr/bin/procmail > sendmail_path = /usr/sbin/sendmail > newaliases_path = /usr/bin/newaliases > mailq_path = /usr/bin/mailq > html_directory = /usr/doc/postfix-2.11.4/html > manpage_directory = /usr/man > sample_directory = /etc/postfix > readme_directory = /usr/doc/postfix-2.11.4/README_FILES
This does not matter, the problem might come from somewhere else. You need to figure out why that particular path on line "504" is causing the problem. We can't do that for you. To do that, you need to edit the post-install shell script to log the obsolete paths processed. For example: diff --git a/conf/post-install b/conf/post-install index 7e79c92..35279d0 100644 --- a/conf/post-install +++ b/conf/post-install @@ -501,6 +501,7 @@ test -n "$create" && { # Flag obsolete objects. XXX Solaris 2..9 does not have "test -e". if [ -n "$obsolete_flag" ] then + echo "'$path':$type:$owner:$group:$mode:$flags:$junk" >> obsolete.log test -r $path -a "$type" != "d" && obsolete="$obsolete $path" continue; else Then report what you find in obsolete.log -- Viktor.