mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
Use persistent_login plugin's "Auth Token" support for Roundcube. The old way was very insecure and is subject to dictionary attack of the unsalted encrypted password stored in a browser cookie.
This commit is contained in:
parent
54dc06416b
commit
fd2ff00a6e
14
conf/persistent_login-sqlite.sql
Normal file
14
conf/persistent_login-sqlite.sql
Normal file
@ -0,0 +1,14 @@
|
||||
PRAGMA foreign_keys = ON;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `auth_tokens` (
|
||||
`token` TEXT NOT NULL,
|
||||
`expires` TEXT NOT NULL,
|
||||
`user_id` INTEGER NOT NULL,
|
||||
`user_name` TEXT NOT NULL,
|
||||
`user_pass` TEXT NOT NULL,
|
||||
`host` TEXT NOT NULL,
|
||||
PRIMARY KEY(`token`),
|
||||
FOREIGN KEY(`user_id`) REFERENCES `users`(`user_id`) ON DELETE CASCADE
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS `user_id_fk_auth_tokens` ON `auth_tokens`(`user_id`);
|
@ -195,6 +195,15 @@ cat > ${RCM_PLUGIN_DIR}/carddav/config.inc.php <<EOF;
|
||||
?>
|
||||
EOF
|
||||
|
||||
# Configure persistent_login (required database tables are created
|
||||
# later in this script)
|
||||
cat > ${RCM_PLUGIN_DIR}/persistent_login/config.inc.php <<EOF
|
||||
<?php
|
||||
/* Do not edit. Written by Mail-in-a-Box. Regenerated on updates. */
|
||||
\$rcmail_config['ifpl_use_auth_tokens'] = true; # enable AuthToken cookies
|
||||
?>
|
||||
EOF
|
||||
|
||||
# Create writable directories.
|
||||
mkdir -p /var/log/roundcubemail /var/tmp/roundcubemail $STORAGE_ROOT/mail/roundcube
|
||||
chown -R www-data.www-data /var/log/roundcubemail /var/tmp/roundcubemail $STORAGE_ROOT/mail/roundcube
|
||||
@ -235,6 +244,12 @@ ${RCM_DIR}/bin/updatedb.sh --dir ${RCM_DIR}/SQL --package roundcube
|
||||
chown www-data:www-data $STORAGE_ROOT/mail/roundcube/roundcube.sqlite
|
||||
chmod 664 $STORAGE_ROOT/mail/roundcube/roundcube.sqlite
|
||||
|
||||
# Create persistent login plugin's database tables
|
||||
# TODO: use sql from this PR if it gets committed (been waiting 2
|
||||
# weeks and counting...):
|
||||
# https://github.com/mfreiholz/persistent_login/pull/63
|
||||
sqlite3 $STORAGE_ROOT/mail/roundcube/roundcube.sqlite < conf/persistent_login-sqlite.sql
|
||||
|
||||
# Enable PHP modules.
|
||||
phpenmod -v php mcrypt imap ldap
|
||||
restart_service php7.2-fpm
|
||||
|
Loading…
Reference in New Issue
Block a user