Re: error message from post-install - SOLVED

2009-12-20 Thread Anthony Campbell
On 20 Dec 2009, Victor Duchovni wrote: > On Sun, Dec 20, 2009 at 08:25:50PM +, Anthony Campbell wrote: > > > OK, after looking at the output of the modified post-install I found > > the cause of the error message (I think). I deleted postfix-doc and > > reinstalled it - the error is no longer

Re: error message from post-install - SOLVED

2009-12-20 Thread Anthony Campbell
On 20 Dec 2009, Stan Hoeppner wrote: > Anthony Campbell put forth on 12/20/2009 2:25 PM: > > > OK, after looking at the output of the modified post-install I found the > > cause of the error message (I think). I deleted postfix-doc and > > reinstalled it - the error is no longer there. > > And ye

Re: error message from post-install - SOLVED

2009-12-20 Thread Victor Duchovni
On Sun, Dec 20, 2009 at 08:25:50PM +, Anthony Campbell wrote: > OK, after looking at the output of the modified post-install I found the > cause of the error message (I think). I deleted postfix-doc and > reinstalled it - the error is no longer there. What is "postfix-doc", and how did it con

Re: error message from post-install - SOLVED

2009-12-20 Thread Stan Hoeppner
Anthony Campbell put forth on 12/20/2009 2:25 PM: > OK, after looking at the output of the modified post-install I found the > cause of the error message (I think). I deleted postfix-doc and > reinstalled it - the error is no longer there. And yet, you could have avoided this entire messy saga by

Re: error message from post-install - SOLVED

2009-12-20 Thread Anthony Campbell
On 20 Dec 2009, Wietse Venema wrote: > Anthony Campbell: > > > > > > Attached. > > > > > > > > > > These are NOT the files that produced the pastebin output. > > > > > > > > > > Wietse > > > > > > > > > > > > I don't follow. "postconf daemon_directory" gives me /usr/lib/postfix, > > > >

Re: error message from post-install

2009-12-20 Thread Wietse Venema
Anthony Campbell: > > > > > Attached. > > > > > > > > These are NOT the files that produced the pastebin output. > > > > > > > > Wietse > > > > > > > > > I don't follow. "postconf daemon_directory" gives me /usr/lib/postfix, > > > and those are the files that are there. > > > > Try re

Re: error message from post-install

2009-12-20 Thread Wietse Venema
Anthony Campbell: > On 20 Dec 2009, Wietse Venema wrote: > > Anthony Campbell: > > > On 20 Dec 2009, Wietse Venema wrote: > > > > > + set +x > > > > > + test -r /usr/share/doc/postfix/html smtpd_recipient_restrictions = > > > > > permit_mynetworks, reject_unauth_destination, check_policy_service

Re: error message from post-install

2009-12-20 Thread Anthony Campbell
On 20 Dec 2009, Wietse Venema wrote: > Anthony Campbell: > > On 20 Dec 2009, Wietse Venema wrote: > > > > + set +x > > > > + test -r /usr/share/doc/postfix/html smtpd_recipient_restrictions = > > > > permit_mynetworks, reject_unauth_destination, check_policy_service > > > > inet:127.0.0.1:10023/C

Re: error message from post-install

2009-12-20 Thread Wietse Venema
Anthony Campbell: > On 20 Dec 2009, Wietse Venema wrote: > > > + set +x > > > + test -r /usr/share/doc/postfix/html smtpd_recipient_restrictions = > > > permit_mynetworks, reject_unauth_destination, check_policy_service > > > inet:127.0.0.1:10023/CYRUS_README.html -a f '!=' d > > > /usr/lib/postf

Re: error message from post-install

2009-12-20 Thread Anthony Campbell
On 20 Dec 2009, Wietse Venema wrote: > > + set +x > > + test -r /usr/share/doc/postfix/html smtpd_recipient_restrictions = > > permit_mynetworks, reject_unauth_destination, check_policy_service > > inet:127.0.0.1:10023/CYRUS_README.html -a f '!=' d > > /usr/lib/postfix/post-install: line 494: tes

Re: error message from post-install

2009-12-20 Thread Wietse Venema
> + set +x > + test -r /usr/share/doc/postfix/html smtpd_recipient_restrictions = > permit_mynetworks, reject_unauth_destination, check_policy_service > inet:127.0.0.1:10023/CYRUS_README.html -a f '!=' d > /usr/lib/postfix/post-install: line 494: test: too many arguments Can you post or upload t

Re: error message from post-install

2009-12-20 Thread Anthony Campbell
On 19 Dec 2009, Wietse Venema wrote: > Anthony Campbell: > > On 19 Dec 2009, Victor Duchovni wrote: > > > > > > Perhaps your shell's "test" built-in command is broken on the system in > > > question. Add "set -x" just above the test, to see what command is > > > actually executed. > > > > > >

Re: error message from post-install

2009-12-19 Thread Wietse Venema
Anthony Campbell: > On 19 Dec 2009, Victor Duchovni wrote: > > > > Perhaps your shell's "test" built-in command is broken on the system in > > question. Add "set -x" just above the test, to see what command is > > actually executed. > > > > add-> set -x > > test -r ... > > a

Re: error message from post-install

2009-12-19 Thread Wietse Venema
Anthony Campbell: > On 19 Dec 2009, Wietse Venema wrote: > > Anthony Campbell: > > > > Try: > > > > > > > > test -r "$path" > > > > > > > > instead of: > > > > > > > > test -r $path > > > > > > > > does that fix it? If it does, please respond, and attach a compressed > > > > cop

Re: error message from post-install

2009-12-19 Thread Anthony Campbell
On 19 Dec 2009, Wietse Venema wrote: > Anthony Campbell: > > > Try: > > > > > > test -r "$path" > > > > > > instead of: > > > > > > test -r $path > > > > > > does that fix it? If it does, please respond, and attach a compressed > > > copy of your postfix-files file. Make sure you are using

Re: error message from post-install

2009-12-19 Thread Anthony Campbell
On 19 Dec 2009, Victor Duchovni wrote: > > Perhaps your shell's "test" built-in command is broken on the system in > question. Add "set -x" just above the test, to see what command is > actually executed. > > add-> set -x > test -r ... > add-> set +x > > -- Yes, i

Re: error message from post-install

2009-12-19 Thread Wietse Venema
Anthony Campbell: > > Try: > > > > test -r "$path" > > > > instead of: > > > > test -r $path > > > > does that fix it? If it does, please respond, and attach a compressed > > copy of your postfix-files file. Make sure you are using the right > > postfix-files, with recent releases this

Re: error message from post-install

2009-12-19 Thread Victor Duchovni
On Sat, Dec 19, 2009 at 08:57:59AM +, Anthony Campbell wrote: > > Try: > > > > test -r "$path" > > > > instead of: > > > > test -r $path > > > > does that fix it? If it does, please respond, and attach a compressed > > copy of your postfix-files file. Make sure you are using the ri

Re: error message from post-install

2009-12-19 Thread Anthony Campbell
> Try: > > test -r "$path" > > instead of: > > test -r $path > > does that fix it? If it does, please respond, and attach a compressed > copy of your postfix-files file. Make sure you are using the right > postfix-files, with recent releases this is no longer in /etc/postfix, > loo

Re: error message from post-install

2009-12-18 Thread Victor Duchovni
On Fri, Dec 18, 2009 at 01:40:25PM +, Anthony Campbell wrote: > > > I commented out the following lines in /usr/lib/postfix/post-install > > > which seem to refer to Solaris: > > > > > ># Flag obsolete objects. XXX Solaris 2..9 does not have "test -e". > > > if [ -n "$obsolete_flag" ] >

Re: error message from post-install

2009-12-18 Thread Anthony Campbell
On 18 Dec 2009, Wietse Venema wrote: > Anthony Campbell: > > On 18 Dec 2009, Wietse Venema wrote: > > > Anthony Campbell: > > > > > > > > I am running postfix via the Debian package in Sid. > > > > > > > > I get the following message during installation or with postfix check: > > > > > > > > po

Re: error message from post-install

2009-12-18 Thread Wietse Venema
Anthony Campbell: > On 18 Dec 2009, Wietse Venema wrote: > > Anthony Campbell: > > > > > > I am running postfix via the Debian package in Sid. > > > > > > I get the following message during installation or with postfix check: > > > > > > postfix/usr/lib/postfix/post-install: line 493: test: too

Re: error message from post-install

2009-12-18 Thread Anthony Campbell
On 18 Dec 2009, Wietse Venema wrote: > Anthony Campbell: > > > > I am running postfix via the Debian package in Sid. > > > > I get the following message during installation or with postfix check: > > > > postfix/usr/lib/postfix/post-install: line 493: test: too many arguments > > /usr/lib/postf

Re: error message from post-install

2009-12-18 Thread Wietse Venema
Anthony Campbell: > > I am running postfix via the Debian package in Sid. > > I get the following message during installation or with postfix check: > > postfix/usr/lib/postfix/post-install: line 493: test: too many arguments > /usr/lib/postfix/post-install: line 493: test: too many arguments >

error message from post-install

2009-12-18 Thread Anthony Campbell
I am running postfix via the Debian package in Sid. I get the following message during installation or with postfix check: postfix/usr/lib/postfix/post-install: line 493: test: too many arguments /usr/lib/postfix/post-install: line 493: test: too many arguments /usr/lib/postfix/post-install: li