[imp] no sidebar
Ryan Flannery
ryan.flannery at gmail.com
Sun Jan 29 12:02:36 PST 2006
Common error on OpenBSD... has to do with the c-client library
(which is used by the php-imap package).
Check out:
http://www.ryanflannery.net/howtos/horde_imp_obsd.php
If you're running Apache as user 'www' (or whatever), the c-client
library is trying to open /etc/pwd.db file to make sure user 'www'
exists. Since you're in the chroot, it can't read it. You can make
a copy of the password db under the chroot, containing only the record
for user 'www' and things will work just fine. That file is created
using the 'pwd_mkdb' program though, so doing the following should
work...
mkdir -p /var/www/etc
cp /etc/master.passwd /var/www/etc
vi /var/www/etc/master.passwd
(remove all lines except the one for user 'www')
pwd_mkdb -d /var/www/etc /var/www/etc/master.passwd
-Ryan
On Jan 29, 2006, at 2:55 PM, Bachman Kharazmi wrote:
> Hi
> I'm a new horde/imp admin.
>
> I've ran into a very strange problem with no sidebar at all.
> Users can login to their accounts, but there's nothing on the left.
> It's a empty white frame.
>
> the system I'm running on is
> obsd 3.8
> apache 1.x (jailed with ssl)
> IMP: H3 (4.0.2)
>
> #one section from servers.php
> $servers['_prompt'] = array(
> 'name' => _("Choose a mail server:")
> );
>
> /* Example configurations: */
>
> $servers['imap'] = array(
> 'name' => 'IMAP Server',
> 'server' => '194.17.X.X',
> 'hordeauth' => false,
> 'protocol' => 'imap/ssl/novalidate-cert',
> 'port' => 993,
> 'folders' => 'mail/',
> 'namespace' => '',
> 'maildomain' => '194.17.X.X',
> 'smtphost' => '194.17.X.X',
> 'smtpport' => 25,
> 'realm' => '',
> 'preferred' => '',
> 'dotfiles' => false,
> 'hierarchies' => array()
> );
>
> TIA,
> Bachman
> --
> ######################
> BKW - Bachman Kharazmi
> bahkha AT gmail DOT com
> uin: #24089491
> SWEDEN
> ######################
> --
> IMP mailing list - Join the hunt: http://horde.org/bounties/#imp
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: imp-unsubscribe at lists.horde.org
More information about the imp
mailing list