<div>Bernhard,</div>
<div> </div>
<div>I'm not sure what you mean, but here's what I've just tried from the default system environment (non-Kolab):</div>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<div><font face="georgia" size="1"># echo $MANPATH</font></div>
<div><font face="georgia" size="1"><em>(null)</em></font></div>
<div><font face="georgia" size="1"># man bash</font></div>
<div><font face="georgia" size="1"><em>(man page displayed)</em></font></div>
<div><font face="georgia" size="1"># eval 'MANPATH=test ; export MANPATH'</font></div>
<div><font face="georgia" size="1"># man bash<br><strong>No manual entry for bash<br></strong></font><font face="georgia" size="1"># echo $MANPATH</font></div>
<div><font face="georgia" size="1"><strong>test</strong></font></div>
<div><font face="georgia" size="1"># MANPATH="/kolab/man:/kolab/local/man::/usr/man:/usr/share/man"; export MANPATH</font></div>
<div><font face="georgia" size="1"># man bash</font></div>
<div><font face="georgia" size="1"><em>(man page displayed)</em></font></div>
<div><font face="georgia" size="1"># echo $MANPATH<br><strong>/kolab/man:/kolab/local/man::/usr/man:/usr/share/man</strong></font></div>
<div><font face="georgia" size="1"># unset MANPATH</font></div>
<div><font face="georgia" size="1"># man bash</font></div>
<div><font face="georgia" size="1"><em>(man page displayed)</em></font></div>
<div><font face="georgia" size="1"># echo $MANPATH</font></div>
<div><font face="georgia" size="1"><em>(null)</em></font></div></blockquote>
<div>Doing the same steps under the Kolab environment (rc --eval all env) results in no man page being displayed at all (although 'less' always opens). So, it seems to me the problem has nothing to do with MANPATH, but something else. Knowing that, I've tried to recreate Kolab env by typing the lines from 
rc.tmp one by one and trying to view a man page. Well, just figured it out: the problem actually is with the PATH variable. Here is a comparison:</div>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<div><font face="georgia" size="1"># echo $PATH<br><strong>/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin<br></strong># man bash</font></div>
<div><font face="georgia" size="1"><em>(man page displayed)</em></font></div>
<div><font face="georgia" size="1"># type man</font></div>
<div><font face="georgia" size="1"><strong>man is /usr/bin/man</strong></font></div>
<div><font face="georgia" size="1"># type less</font></div>
<div><font face="georgia" size="1"><strong>less is /usr/bin/less</strong></font></div>
<div><font face="georgia" size="1"># type nroff<br><strong>nroff is /usr/bin/nroff</strong></font></div>
<div><font face="georgia" size="1"># PATHBEFOREKOLAB=$PATH; export PATHBEFOREKOLAB</font></div>
<div><font face="georgia" size="1"># eval `/kolab/etc/rc --eval all env`<br># echo $PATH<br><strong>/kolab/bin:/kolab/sbin:/kolab/local/bin:/kolab/local/sbin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/bin:/sbin:/usr/bin:/usr/sbin
<br></strong># man bash</font></div>
<div><font face="georgia" size="1"><em>(less opens, but output is null)</em></font></div>
<div>
<div><font face="georgia" size="1"># type man</font></div>
<div><font face="georgia" size="1"><strong>man is /usr/bin/man</strong></font></div>
<div><font face="georgia" size="1"># type less</font></div>
<div><font face="georgia" size="1"><strong>less is /usr/bin/less</strong></font></div>
<div><font face="georgia" size="1"># type nroff<br><strong>nroff is /kolab/bin/nroff</strong></font></div></div>
<div><font face="georgia" size="1"># PATH=$PATHBEFOREKOLAB; export PATH</font></div>
<div><font face="georgia" size="1"># echo $PATH<br><strong>/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin<br></strong># man bash</font></div>
<div><font face="georgia" size="1"><em>(man page displayed again)</em></font></div>
<div>
<div><font face="georgia" size="1"># type man</font></div>
<div><font face="georgia" size="1"><strong>man is /usr/bin/man</strong></font></div>
<div><font face="georgia" size="1"># type less</font></div>
<div><font face="georgia" size="1"><strong>less is /usr/bin/less</strong></font></div>
<div><font face="georgia" size="1"># type nroff<br><strong><strong><font face="Georgia" size="1">nroff is /usr/bin/nroff</font></strong></strong></font></div></div></blockquote>
<div>I'm not sure, but I'd bet that there's something wrong with Kolab's groff/nroff in my system. I'll try to investigate further, but any help is welcome!</div>
<div> </div>
<div>Best regards,</div>
<div>Felipe<br><br> </div>
<div><span class="gmail_quote">On 1/8/06, <b class="gmail_sendername">Bernhard Reiter</b> <<a href="mailto:bernhard@intevation.de">bernhard@intevation.de</a>> wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Am Donnerstag, 5. Januar 2006 17:25 schrieb Felipe Mendel N. Prates:<br>> Here it goes:<br>> MANPATH="/kolab/man:/kolab/local/man::/usr/man:/usr/share/man"; export
<br>> MANPATH<br><br>Okay, the output seems to have the MANPATH just fine.<br><br>> BTW, I use bash (v3.0).<br><br>If you eval the above line (in one line)<br>("MANPATH="/kolab/man:/kolab/local/man::/usr/man:/usr/share/man"; export
<br>MANPATH")<br>on the shell prompt, it should give you a MANPATH variable set.<br>Especially on your prompt try copying the line and then "echo $MANPATH".<br>Is this really empty?<br>If not, can you try<br>
eval 'MANPATH=test ; export MANPATH'<br>echo $MANPATH<br></blockquote></div>