vars.inc.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <?php
  2. error_reporting(E_ERROR);
  3. //error_reporting(E_ALL);
  4. /*
  5. PLEASE USE THE FILE "vars.local.inc.php" TO OVERWRITE SETTINGS AND MAKE THEM PERSISTENT!
  6. This file will be reset on upgrades.
  7. */
  8. // SQL database connection variables
  9. $database_type = 'mysql';
  10. $database_sock = '/var/run/mysqld/mysqld.sock';
  11. $database_host = 'mysql';
  12. $database_user = getenv('DBUSER');
  13. $database_pass = getenv('DBPASS');
  14. $database_name = getenv('DBNAME');
  15. // Other variables
  16. $mailcow_hostname = getenv('MAILCOW_HOSTNAME');
  17. $default_pass_scheme = getenv('MAILCOW_PASS_SCHEME');
  18. // Autodiscover settings
  19. // ===
  20. // Auto-detect HTTPS port =>
  21. $https_port = strpos($_SERVER['HTTP_HOST'], ':');
  22. if ($https_port === FALSE) {
  23. $https_port = 443;
  24. } else {
  25. $https_port = substr($_SERVER['HTTP_HOST'], $https_port+1);
  26. }
  27. // Alternatively select port here =>
  28. //$https_port = 1234;
  29. // Other settings =>
  30. $autodiscover_config = array(
  31. // General autodiscover service type: "activesync" or "imap"
  32. // emClient uses autodiscover, but does not support ActiveSync. mailcow excludes emClient from ActiveSync.
  33. // With SOGo disabled, the type will always fallback to imap. CalDAV and CardDAV will be excluded, too.
  34. 'autodiscoverType' => 'activesync',
  35. // If autodiscoverType => activesync, also use ActiveSync (EAS) for Outlook desktop clients (>= Outlook 2013 on Windows)
  36. // Outlook for Mac does not support ActiveSync
  37. 'useEASforOutlook' => 'no',
  38. // Please don't use STARTTLS-enabled service ports in the "port" variable.
  39. // The autodiscover service will always point to SMTPS and IMAPS (TLS-wrapped services).
  40. // The autoconfig service will additionally announce the STARTTLS-enabled ports, specified in the "tlsport" variable.
  41. 'imap' => array(
  42. 'server' => $mailcow_hostname,
  43. 'port' => end(explode(':', getenv('IMAPS_PORT'))),
  44. 'tlsport' => end(explode(':', getenv('IMAP_PORT'))),
  45. ),
  46. 'pop3' => array(
  47. 'server' => $mailcow_hostname,
  48. 'port' => end(explode(':', getenv('POPS_PORT'))),
  49. 'tlsport' => end(explode(':', getenv('POP_PORT'))),
  50. ),
  51. 'smtp' => array(
  52. 'server' => $mailcow_hostname,
  53. 'port' => end(explode(':', getenv('SMTPS_PORT'))),
  54. 'tlsport' => end(explode(':', getenv('SUBMISSION_PORT'))),
  55. ),
  56. 'activesync' => array(
  57. 'url' => 'https://'.$mailcow_hostname.($https_port == 443 ? '' : ':'.$https_port).'/Microsoft-Server-ActiveSync',
  58. ),
  59. 'caldav' => array(
  60. 'server' => $mailcow_hostname,
  61. 'port' => $https_port,
  62. ),
  63. 'carddav' => array(
  64. 'server' => $mailcow_hostname,
  65. 'port' => $https_port,
  66. ),
  67. );
  68. // If false, we will use DEFAULT_LANG
  69. // Uses HTTP_ACCEPT_LANGUAGE header
  70. $DETECT_LANGUAGE = true;
  71. // Change default language
  72. $DEFAULT_LANG = 'en';
  73. // Available languages
  74. // https://www.iso.org/obp/ui/#search
  75. // https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
  76. $AVAILABLE_LANGUAGES = array(
  77. 'cs' => 'Čeština (Czech)',
  78. 'da' => 'Danish (Dansk)',
  79. 'de' => 'Deutsch (German)',
  80. 'en' => 'English',
  81. 'es' => 'Español (Spanish)',
  82. 'fi' => 'Suomi (Finish)',
  83. 'fr' => 'Français (French)',
  84. 'hu' => 'Magyar (Hungarian)',
  85. 'it' => 'Italiano (Italian)',
  86. 'ko' => '한국어 (Korean)',
  87. 'lv' => 'latviešu (Latvian)',
  88. 'nl' => 'Nederlands (Dutch)',
  89. 'pl' => 'Język Polski (Polish)',
  90. 'pt' => 'Português (Portuguese)',
  91. 'ro' => 'Română (Romanian)',
  92. 'ru' => 'Pусский (Russian)',
  93. 'sk' => 'Slovenčina (Slovak)',
  94. 'sv' => 'Svenska (Swedish)',
  95. 'zh' => '中文 (Chinese)'
  96. );
  97. // Change theme (default: lumen)
  98. // Needs to be one of those: cerulean, cosmo, cyborg, darkly, flatly, journal, lumen, paper, readable, sandstone,
  99. // simplex, slate, spacelab, superhero, united, yeti
  100. // See https://bootswatch.com/
  101. // WARNING: Only lumen is loaded locally. Enabling any other theme, will download external sources.
  102. $DEFAULT_THEME = 'lumen';
  103. // Show DKIM private keys - false by default
  104. $SHOW_DKIM_PRIV_KEYS = false;
  105. // mailcow Apps - buttons on login screen
  106. $MAILCOW_APPS = array(
  107. array(
  108. 'name' => 'Webmail',
  109. 'link' => '/SOGo/',
  110. )
  111. );
  112. // Rows until pagination begins
  113. $PAGINATION_SIZE = 20;
  114. // Default number of rows/lines to display (log table)
  115. $LOG_LINES = 1000;
  116. // Rows until pagination begins (log table)
  117. $LOG_PAGINATION_SIZE = 50;
  118. // Session lifetime in seconds
  119. $SESSION_LIFETIME = 10800;
  120. // Label for OTP devices
  121. $OTP_LABEL = "mailcow UI";
  122. // How long to wait (in s) for cURL Docker requests
  123. $DOCKER_TIMEOUT = 60;
  124. // Split DKIM key notation (bind format)
  125. $SPLIT_DKIM_255 = false;
  126. // OAuth2 settings
  127. $REFRESH_TOKEN_LIFETIME = 2678400;
  128. $ACCESS_TOKEN_LIFETIME = 86400;
  129. // Logout from mailcow after first OAuth2 session profile request
  130. $OAUTH2_FORGET_SESSION_AFTER_LOGIN = false;
  131. // MAILBOX_DEFAULT_ATTRIBUTES define default attributes for new mailboxes
  132. // These settings will not change existing mailboxes
  133. // Force incoming TLS for new mailboxes by default
  134. $MAILBOX_DEFAULT_ATTRIBUTES['tls_enforce_in'] = false;
  135. // Force outgoing TLS for new mailboxes by default
  136. $MAILBOX_DEFAULT_ATTRIBUTES['tls_enforce_out'] = false;
  137. // Force password change on next login (only allows login to mailcow UI)
  138. $MAILBOX_DEFAULT_ATTRIBUTES['force_pw_update'] = false;
  139. // Enable SOGo access (set to false to disable access by default)
  140. $MAILBOX_DEFAULT_ATTRIBUTES['sogo_access'] = true;
  141. // Send notification when quarantine is not empty (never, hourly, daily, weekly)
  142. $MAILBOX_DEFAULT_ATTRIBUTES['quarantine_notification'] = 'hourly';
  143. // Mailbox has IMAP access by default
  144. $MAILBOX_DEFAULT_ATTRIBUTES['imap_access'] = true;
  145. // Mailbox has POP3 access by default
  146. $MAILBOX_DEFAULT_ATTRIBUTES['pop3_access'] = true;
  147. // Mailbox has SMTP access by default
  148. $MAILBOX_DEFAULT_ATTRIBUTES['smtp_access'] = true;
  149. // Mailbox has XMPP access by default (if domain has XMPP enabled)
  150. $MAILBOX_DEFAULT_ATTRIBUTES['xmpp_access'] = true;
  151. // Mailbox is XMPP admin by default (bad)
  152. $MAILBOX_DEFAULT_ATTRIBUTES['xmpp_admin'] = false;
  153. // Mailbox receives notifications about...
  154. // "add_header" - mail that was put into the Junk folder
  155. // "reject" - mail that was rejected
  156. // "all" - mail that was rejected and put into the Junk folder
  157. $MAILBOX_DEFAULT_ATTRIBUTES['quarantine_category'] = 'reject';
  158. // Default mailbox format, should not be changed unless you know exactly, what you do, keep the trailing ":"
  159. // Check dovecot.conf for further changes (e.g. shared namespace)
  160. $MAILBOX_DEFAULT_ATTRIBUTES['mailbox_format'] = 'maildir:';
  161. // Show last IMAP and POP3 logins
  162. $SHOW_LAST_LOGIN = true;
  163. // UV flag handling in FIDO2/WebAuthn - defaults to false to allow iOS logins
  164. // true = required
  165. // false = preferred
  166. // string 'required' 'preferred' 'discouraged'
  167. $FIDO2_UV_FLAG_REGISTER = 'preferred';
  168. $FIDO2_UV_FLAG_LOGIN = 'preferred'; // iOS ignores the key via NFC if required - known issue
  169. $FIDO2_USER_PRESENT_FLAG = true;
  170. $FIDO2_FORMATS = array('apple', 'android-key', 'android-safetynet', 'fido-u2f', 'none', 'packed', 'tpm');
  171. // Set visible Rspamd maps in mailcow UI, do not change unless you know what you are doing
  172. $RSPAMD_MAPS = array(
  173. 'regex' => array(
  174. 'Header-From: Blacklist' => 'global_mime_from_blacklist.map',
  175. 'Header-From: Whitelist' => 'global_mime_from_whitelist.map',
  176. 'Envelope Sender Blacklist' => 'global_smtp_from_blacklist.map',
  177. 'Envelope Sender Whitelist' => 'global_smtp_from_whitelist.map',
  178. 'Recipient Blacklist' => 'global_rcpt_blacklist.map',
  179. 'Recipient Whitelist' => 'global_rcpt_whitelist.map',
  180. 'Fishy TLDS (only fired in combination with bad words)' => 'fishy_tlds.map',
  181. 'Bad Words (only fired in combination with fishy TLDs)' => 'bad_words.map',
  182. 'Bad Words DE (only fired in combination with fishy TLDs)' => 'bad_words_de.map',
  183. 'Bad Languages' => 'bad_languages.map',
  184. 'Bulk Mail Headers' => 'bulk_header.map',
  185. 'Bad (Junk) Mail Headers' => 'bad_header.map',
  186. 'Monitoring Hosts' => 'monitoring_nolog.map'
  187. )
  188. );