| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/webmail/config/ |
Upload File : |
<?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'] = 'mysql://webmail:sjwu67RT3j01Mlawn@localhost/webmail2023'; // ---------------------------------- // IMAP // ---------------------------------- // The IMAP host (and optionally port number) 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. // If port number is omitted it will be set to 993 (for ssl://) or 143 otherwise. // 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['imap_host'] = '195.130.67.2:143'; // ---------------------------------- // SMTP // ---------------------------------- // SMTP server host (and optional port number) for sending mails. // Enter hostname with prefix ssl:// to use Implicit TLS, or use // prefix tls:// to use STARTTLS. // If port number is omitted it will be set to 465 (for ssl://) or 587 otherwise. // Supported replacement variables: // %h - user's IMAP hostname // %n - hostname ($_SERVER['SERVER_NAME']) // %t - hostname without the first part // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part) // %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %t = domain.tld // To specify different SMTP servers for different IMAP hosts provide an array // of IMAP host (no prefix or port) and SMTP server e.g. ['imap.example.com' => 'smtp.example.net'] $config['smtp_host'] = '195.130.67.2:25'; // 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'] = 'jLfxIQhPJS5BzD6c7M9iJNZp'; // Name your service. This is displayed on the login screen and in the window title $config['product_name'] = 'WebMail - ΔΙ.ΠΑ.Ε. Πανεπιστημιούπολη Σερρών'; // ---------------------------------- // PLUGINS // ---------------------------------- // List of active plugins (in plugins/ directory) $config['plugins'] = ['jqueryui', 'zipdownload', 'rcguard']; // the default locale setting (leave empty for auto-detection) // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR $config['language'] = 'el_GR'; // use this format for date display (PHP DateTime format) $config['date_format'] = 'd-m-Y'; // use this format for detailed date/time formatting (derived from date_format and time_format) $config['date_long'] = 'd-m-Y H:i'; //$config['skin_logo'] = 'images/ihu-gr-logo.png'; $config['skin_logo'] = array( "login"=>"skins/elastic/images/ihu-gr-logo.png", "login[dark]"=>"skins/elastic/images/ihu-gr-logo-white.png", "[favicon]"=>"skins/elastic/images/ihu-emblem.png", "*"=>"skins/elastic/images/ihu-emblem-white.png" ); /** * rcguard configuration file. */ // Number of failed logins before reCAPTCHA is shown $config['failed_attempts'] = 3; // Release IP after how many minutes (after last failed attempt) $config['expire_time'] = 30; // Reset failure count after successfull login (see bratkartoffel/rcguard@670395e) $config['rcguard_reset_after_success'] = true; // reCAPTCHA API version and url $config['recaptcha_api_version'] = 'v2'; // v3 | v2 | v2invisible $config['recaptcha_api_url'] = 'https://www.google.com/recaptcha/api.js'; // !!! DEPRECATED - not used anymore !!! //$config['recaptcha_api'] = 'http://www.google.com/recaptcha/api.js'; //$config['recaptcha_api_secure'] = 'https://www.google.com/recaptcha/api.js'; //$config['recaptcha_https'] = true; // Keys can be obtained from http://www.google.com/recaptcha/ // reCAPTCHA site key $config['recaptcha_publickey'] = '6Le5iuomAAAAAHjLmjIhoOymui4kev4ihC5Z66iE'; // reCAPTCHA secret key $config['recaptcha_privatekey'] = '6Le5iuomAAAAAGbQ99NbROZ6hnloaLtTvHFcLKed'; // Send client IP to Google for reCAPTCHA verification $config['recaptcha_send_client_ip'] = true; // If defined, use this proxy to request ReCaptcha // $config['recaptcha_proxy'] = 'proxy.example.com:5100'; $config['recaptcha_proxy'] = false; // Proxy authentication credentials // $config['recaptcha_proxy:auth'] = 'login:password'; $config['recaptcha_proxy_auth'] = false; // Log events $config['recaptcha_log'] = false; // Recaptcha widget theme: light | dark (only for v2*) $config['recaptcha_theme'] = 'light'; // Recaptcha widget size: normal | compact (only for v2*) $config['recaptcha_size'] = 'normal'; // Event is not logged when set to NULL // Parameter expansion: // %r - Remote IP // %u - Username $config['recaptcha_log_success'] = 'Verification succeeded for %u. [%r]'; $config['recaptcha_log_failure'] = 'Error: Verification failed for %u. [%r]'; $config['recaptcha_log_unknown'] = 'Error: Unknown log type.'; // Block IPv6 clients based on prefix length // Use an integer between 16 and 128, 0 to disable $config['rcguard_ipv6_prefix'] = 0; // Do not show recaptcha for this IPs $config['rcguard_ignore_ips'] = []; // Do not show recaptcha of these networks $config['recaptcha_whitelist'] = []; // This domain will be used to form e-mail addresses of new users // Specify an array with 'host' => 'domain' values to support multiple hosts // Supported replacement variables: // %h - user's IMAP hostname // %n - http hostname ($_SERVER['SERVER_NAME']) // %d - domain (http hostname without the first part) // %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %t = domain.tld $config['mail_domain'] = 'ihu.gr';