source: github/config/main.inc.php.dist @ 49afbf5

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 49afbf5 was 49afbf5, checked in by thomascube <thomas@…>, 8 years ago

Better support for Courier IMAP

  • Property mode set to 100644
File size: 3.5 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | Main configuration file                                               |
6 |                                                                       |
7 | This file is part of the RoundCube Webmail client                     |
8 | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 +-----------------------------------------------------------------------+
12
13*/
14
15$rcmail_config = array();
16
17
18// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace
19$rcmail_config['debug_level'] = 5;
20
21// enable caching of messages and mailbox data in the local database.
22// this is recommended if the IMAP server does not run on the same machine
23$rcmail_config['enable_caching'] = TRUE;
24
25// automatically create a new user when log-in the first time
26// set to false if only registered users can use this service
27$rcmail_config['auto_create_user'] = TRUE;
28
29// the mail host chosen to perform the log-in
30// leave blank to show a textbox at login, give a list of hosts
31// to display a pulldown menu or set one host as string.
32// To use SSL connection, enter ssl://hostname:993
33$rcmail_config['default_host'] = '';
34
35// TCP port used for IMAP connections
36$rcmail_config['default_port'] = 143;
37
38// use this host for sending mails.
39// if left blank, the PHP mail() function is used
40$rcmail_config['smtp_server'] = '';
41
42// SMTP port (default is 25)
43$rcmail_config['smtp_port'] = 25;
44
45// SMTP username (if required)
46$rcmail_config['smtp_user'] = '';
47
48// SMTP password (if required)
49$rcmail_config['smtp_pass'] = '';
50
51// Log sent messages
52$rcmail_config['smtp_log'] = TRUE;
53
54// these cols are shown in the message list
55// available cols are: subject, from, to, cc, replyto, date, size, encoding
56$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size');
57
58// relative path to the skin folder
59$rcmail_config['skin_path'] = 'skins/default/';
60
61// use this folder to store temp files (must be writebale for apache user)
62$rcmail_config['temp_dir'] = 'temp/';
63
64// check client IP in session athorization
65$rcmail_config['ip_check'] = TRUE;
66
67// not shure what this was good for :-)
68$rcmail_config['locale_string'] = 'de_DE';
69
70// use this format for short date display
71$rcmail_config['date_short'] = 'D H:i';
72
73// use this format for detailed date/time formatting
74$rcmail_config['date_long'] = 'd.m.Y H:i';
75
76// add this user-agent to message headers when sending
77$rcmail_config['useragent'] = 'RoundCube Webmail/0.1-20051011';
78
79// only list folders within this path
80$rcmail_config['imap_root'] = '';
81
82// store sent message is this mailbox
83// leave blank if sent messages should not be stored
84$rcmail_config['sent_mbox'] = 'Sent';
85
86// move messages to this folder when deleting them
87// leave blank if they should be deleted directly
88$rcmail_config['trash_mbox'] = 'Trash';
89
90// display these folders separately in the mailbox list
91$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
92
93
94/***** these settings can be overwritten by user's preferences *****/
95
96// show up to X items in list view
97$rcmail_config['pagesize'] = 40;
98
99// use this timezone to display date/time
100$rcmail_config['timezone'] = 1;
101
102// prefer displaying HTML messages
103$rcmail_config['prefer_html'] = TRUE;
104
105// show pretty dates as standard
106$rcmail_config['prettydate'] = TRUE;
107
108
109// end of config file
110?>
Note: See TracBrowser for help on using the repository browser.