| Server IP : 188.114.97.2 / Your IP : 104.23.243.200 Web Server : Apache/2.4.59 (Debian) System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : edlftp ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/roundcube/ |
Upload File : |
<?php
/* Local configuration for Roundcube Webmail */
// ----------------------------------// IMAP// ----------------------------------// The mail 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.// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://// 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'] = 'edl.codes.solutions';
//587;// SMTP username (if required) if you use %u as the username Roundcube// will use the current username for login$config['smtp_user'] = '%u';
// SMTP password (if required) if you use %p as the password Roundcube// will use the current user's password for login$config['smtp_pass'] = '%p';
// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use// best server supported one)$config['smtp_auth_type'] = 'LOGIN';
// SMTP HELO host // Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages // Leave this blank and you will get the server variable 'server_name' or // localhost if that isn't defined.$config['smtp_helo_host'] = 'edl.codes.solutions';
// 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).$config['des_key'] = 'Xb5W5ZrC8LCFF1U6R7MCLNTR';
// Name your service. This is displayed on the login screen and in the window title$config['product_name'] = 'Edl.codes.solutions Webmail';
// ----------------------------------// PLUGINS// ----------------------------------// List of active plugins (in plugins/ directory)$config['plugins'] = array('virtuser_query');
$config['virtuser_query'] = 'SELECT Email FROM postfix.Users_tbl WHERE Email = '%u'';
/* Do not set db_dsnw here, use dpkg-reconfigure roundcube-core to configure database ! */
include_once("/etc/roundcube/debian-db-roundcube.php");