Luca Corti wrote:
On Tue, 2006-05-16 at 08:24 -0500, Eric wrote:
does anyone else use Horde/IMP that can share their servers.php setup? I
My servers.php looks like this:
$servers['_prompt'] = array( 'name' => _("Choose a mail server:") );
$servers['imap'] = array( 'name' => 'IMAP Server', 'server' => 'localhost', 'hordeauth' => false, 'protocol' => 'imap/notls', 'port' => 143, 'maildomain' => '', 'smtphost' => 'localhost', 'smtpport' => 25, 'realm' => '', 'preferred' => '', );
I also changed the default folders for sent/drafts/spam/etc. in another imp config file I do not remember right now.
I can also share my Ingo setup using the VFS FTP driver to be able to define sieve scripts from Horde if you are interested
My VFS setup for Ingo seems to be working fine when i do not get all these PHP errors. here is my servers.php file:
$servers['imap'] = array( 'name' => 'IMAP Server', // 'server' => 'somedomain.com', 'server' => '127.0.0.1', 'hordeauth' => true, 'protocol' => 'imap/notls', 'port' => 143, 'maildomain' => 'somedomain.com', // 'smtphost' => 'somedomain.com', 'smtphost' => '127.0.0.1', 'smtpport' => 25, // 'realm' => '', // 'preferred' => '', );
its really similar to yours. since thunderbird works fine i think its a HORDE/IMP issue. i will kick it over to their mailing list to see what i can discover.
Thanks!