Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
roundcube
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
roundcube
Commits
f1a3f4a2
Commit
f1a3f4a2
authored
Jan 13, 2021
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Configured roundcube
parent
66884b40
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
1 deletion
+65
-1
Makefile
Makefile
+6
-1
config.inc.php
config.inc.php
+59
-0
No files found.
Makefile
View file @
f1a3f4a2
all
:
all
:
tar
xf roundcubemail-1.4.8-complete.tar.gz
-C
/srv/www
--strip-components
=
1
tar
xf roundcubemail-1.4.8-complete.tar.gz
-C
/srv/www
--strip-components
=
1
rm
/srv/www/index.html
rm
/srv/www/index.html
install
-v
-Dm644
config.inc.php /srv/www/config
rm
/srv/www/config/config.in.php.sample
rm
-rf
/srv/www/installer
install
-v
-m755
-o
apache
-g
apache
-d
/var/lib/roundcube
chown
-v
-R
apache:apache /srv/www
sed
-e
's|^.*DirectoryIndex .*| DirectoryIndex index.php|'
-i
/etc/httpd/httpd.conf
config.inc.php
0 → 100644
View file @
f1a3f4a2
<?php
/* Local configuration for Roundcube Webmail */
// ----------------------------------
// SQL DATABASE
// ----------------------------------
// Database connection string (DSN) for read+write operations
// Format (compatible with PEAR MDB2): db_provider://user:password@host/database
// Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle
// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
// Note: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646'
// or (Windows): 'sqlite:///C:/full/path/to/sqlite.db'
// Note: Various drivers support various additional arguments for connection,
// for Mysql: key, cipher, cert, capath, ca, verify_server_cert,
// for Postgres: application_name, sslmode, sslcert, sslkey, sslrootcert, sslcrl, sslcompression, service.
// e.g. 'mysql://roundcube:@localhost/roundcubemail?verify_server_cert=false'
$config
[
'db_dsnw'
]
=
'sqlite:////var/lib/roundcube/roundcubemail?mode=0646'
;
// ----------------------------------
// LOGGING/DEBUGGING
// ----------------------------------
// log driver: 'syslog', 'stdout' or 'file'.
$config
[
'log_driver'
]
=
'syslog'
;
// ----------------------------------
// IMAP
// ----------------------------------
// The IMAP host chosen to perform the log-in.
// Leave blank to show a textbox at login, give a list of hosts
// to display a pulldown menu or set one host as string.
// Enter hostname with prefix ssl:// to use Implicit TLS, or use
// prefix tls:// to use STARTTLS.
// Supported replacement variables:
// %n - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %s - domain name after the '@' from e-mail address provided at login screen
// For example %n = mail.domain.tld, %t = domain.tld
// WARNING: After hostname change update of mail_host column in users table is
// required to match old user data records with the new host.
$config
[
'default_host'
]
=
'localhost'
;
// provide an URL where a user can get support for this Roundcube installation
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
$config
[
'support_url'
]
=
''
;
// This key is used for encrypting purposes, like storing of imap password
// in the session. For historical reasons it's called DES_key, but it's used
// with any configured cipher_method (see below).
// For the default cipher_method a required key length is 24 characters.
$config
[
'des_key'
]
=
'xgRgUvSsPv53aIXfs8WFaNdf'
;
// ----------------------------------
// PLUGINS
// ----------------------------------
// List of active plugins (in plugins/ directory)
$config
[
'plugins'
]
=
array
(
'managesieve'
,
'markasjunk'
,
'newmail_notifier'
,
'password'
,
'subscriptions_option'
,
'vcard_attachments'
,
'zipdownload'
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment