Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
fuss:roundcube [2016/02/15 12:15] – [Do not Override Skin] officefuss:roundcube [2022/04/19 08:28] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Set Username E-mail Domain ======
  
 +First, edit ''config/config.inc.php'' and set:
 +<code php>
 +$config['mail_domain'] = 'hostname.tld';
 +</code>
 +
 +where ''hostname.tld'' is the domain name you want to set.
 +
 +After that, the database needs to be updated:
 +<code sql>
 +UPDATE users SET mail_host='hostname.tld';
 +</code>
 +
 +====== Do not Override Skin ======
 +
 +To prevent the users from changing the roundcube skin, add:
 +<code php>
 +$config['dont_override'] = array('skin');
 +</code>
 +
 +to ''config/config.inc.php''.
 +
 +====== Log Remote IP Address using Dovecot ======
 +
 +Roundcube does not log IP addresses when it is set up to connect to Dovecot over loopback. The following guide will allow logging the remote browser IP via Dovecot ID whenever a user logs in using the Roundcube website.
 +  - Clone [[https://github.com/corbosman/dovecot_ident|dovecot_ident]] to the Roundcube folder ''plugins/'',
 +  - Edit the Roundcube configuration ''config/config.inc.php'' and add ''dovecot_ident'' to the list of plugins,
 +  - Edit ''/etc/dovecot.conf'' and set the ''login_trusted_networks'' configuration parameter to ''127.0.0.1 ::1'',
 +  - Restart Dovecot.

fuss/roundcube.txt · Last modified: 2022/04/19 08:28 by 127.0.0.1

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.