Webmail Horde / IMP with SSL |
|
Overview
Apache, IMP / HORDE Short Installation Notes
Create the Configuration Files
Run the Security Script
Apache SSL Proxy for IMP / HORDE
Configuration File defaults.php3 <?php /* file: defaults.php3 */ /* 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 = '<webmail-host>.<domain>'; /* Web Server Configuration */ $default->root_url = ''; $default->include_dir = './templates'; $default->graphics_url = $default->root_url . '/graphics'; /* Default IMAP Server Configuration */ $default->server = '<mailhost>.<domain>'; $default->from_server = 'akadia.com'; $default->port = '143'; /* Default IMAP Folder Configuration */ $default->folders = 'Mail/'; $default->use_imap_subscribe = true; $default->show_dotfiles = false; $default->save_sent_mail = true; $default->sent_mail = 'sent-mail'; $default->postponed = 'drafts'; /* Ldap searching */ $default->use_ldap_search = true; /* 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'; /* Sendmail */ $default->path_to_ispell = '/usr/bin/ispell'; /* ISpell */ $default->path_to_mswordview = '/usr/bin/wvHtml'; /* M$WordView */ $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 = false; $default->database_driver = 'dummy'; $default->db_user_name = 'hordemgr'; $default->db_password = 'hordemgr'; $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 = ''; ?> |