[imp] why can't I login?
Jonathan Ellis
jbellis@hotmail.com
Wed, 28 Feb 2001 08:43:44 -0700
> > 1. Using horde 1.2.4 and IMP 2.2.4 on php 4.04pl1.
> > 2. Not much else to say. I try to login, it redirects me back to the
login
> > page with a message saying my attempt failed.
> > 3. Nope, horde itself passed the test fine.
> Okay - anything in red on the test.php3 page? Do you get connection
attempts in
> your imap server's log files? What does your imp configuration look like?
> Anything in your apache logs?
Only red things on test.php3 are LDAP and MySQL support, neither of which
I am using or want to use. Nothing in maillog (and login attempts are
definitely
being logged); nothing in aolserver's log either. (Not using apache.)
Config file (defaults.php3, right?) follows. A couple longer lines got
chopped
off pasting from emacs but I think all the non-comment material is there.
-Jonathan
?php
/* file: defaults.php3 */
/* setup.php3 by Jason "ZeroDiVide" Orcutt < zerodiv@atcjet.net > */
/* For debugging purposes */
$default->error_level = 15;
/* The longest that things like file uploads and slow functions */
/* should be allowed to run. 0 means run until termination */
/* (forever if infinite loop). */
/* NOTE: you can't set this to 0 if safe_mode is on. */
$default->max_execution_time = 0;
/* Server Specific Configuration */
$default->localhost = 'www.carnageblender.com';
/* Web Server Configuration */
$default->root_url = '/public/horde/imp';
$default->include_dir = './templates';
$default->graphics_url = '/public/horde/imp/graphics';
/* Default IMAP Server Configuration */
$default->server = 'localhost';
$default->from_server = 'carnageblender.com';
$default->port = '143';
/* Default IMAP Folder Configuration */
$default->folders = '/';
$default->use_imap_subscribe = false;
$default->show_dotfiles = false;
$default->save_sent_mail = true;
$default->sent_mail = 'Sent Items';
$default->postponed = 'Drafts';
/* Ldap searching */
$default->use_ldap_search = false;
/* Server list : user is presented with a list */
/* of available imap servers */
$default->use_server_list = false;
/* User changeable items */
$default->user_change_server = false;
$default->user_change_folder = false;
$default->user_change_from = true;
$default->user_change_fullname = true;
$default->user_use_addressbook = true;
/* Check For New Mail Configuration */
$default->newmail_popup = true;
$default->refresh_delay = '300';
/* External Binaries Configuration */
$default->path_to_sendmail = '/usr/sbin/sendmail'; /*
Sendm\
ail */
$default->path_to_ispell = '/usr/bin/ispell'; /*
ISpell\
*/
$default->path_to_mswordview = '/usr/local/bin/wvHtml'; /*
M$Wo\
rdView */
$default->path_to_tar = '/bin/tar'; /* Tar */
/* Cyrus Configuration */
$default->personal_folders = ''; /* i.e. INBOX. */
/* Default Language Configuration */
$default->language = 'en';
/* Message Configuration */
$default->append_header = false;
$default->append_trailer = false;
/* Text Viewing */
$default->text_parts_inline = true;
/* Database Configuration */
$default->use_db = true;
$default->database_driver = 'pgsql';
$default->db_user_name = 'hordemgr';
$default->db_password = /* my password */;
$default->db_security_nag = true;
$default->db_name = 'horde';
$default->db_server_name = 'localhost';
$default->db_pref_table = 'imp_pref';
$default->db_address_table = 'imp_addr';
$default->db_connect_string = '';
$default->db_server_port = '';
$default->db_server_options = '';
$default->db_server_tty = '';
?>