From 10f2c179797f86e29f3e1e0901c1c2e60b728701 Mon Sep 17 00:00:00 2001 From: Erriez Date: Fri, 13 Aug 2021 23:21:12 +0200 Subject: [PATCH] Restore Roundcube PHP files --- webmails/roundcube/config.inc.php | 66 +++++++++++++++++++++++++++++++ webmails/roundcube/mailu.php | 59 +++++++++++++++++++++++++++ 2 files changed, 125 insertions(+) create mode 100644 webmails/roundcube/config.inc.php create mode 100644 webmails/roundcube/mailu.php diff --git a/webmails/roundcube/config.inc.php b/webmails/roundcube/config.inc.php new file mode 100644 index 00000000..797f229c --- /dev/null +++ b/webmails/roundcube/config.inc.php @@ -0,0 +1,66 @@ + array( + 'verify_peer' => false, + 'verify_peer_name' => false, + ), +); +$config['imap_conn_options'] = $ssl_no_check; +$config['smtp_conn_options'] = $ssl_no_check; +$config['managesieve_conn_options'] = $ssl_no_check; + +// skin name: folder from skins/ +$config['skin'] = 'elastic'; + +// Enigma gpg plugin +$config['enigma_pgp_homedir'] = '/data/gpg'; + +// Set From header for DKIM signed message delivery reports +$config['mdn_use_from'] = true; diff --git a/webmails/roundcube/mailu.php b/webmails/roundcube/mailu.php new file mode 100644 index 00000000..bb4d65e9 --- /dev/null +++ b/webmails/roundcube/mailu.php @@ -0,0 +1,59 @@ +add_hook('startup', array($this, 'startup')); + $this->add_hook('authenticate', array($this, 'authenticate')); + $this->add_hook('login_after', array($this, 'login')); + $this->add_hook('login_failed', array($this, 'login_failed')); + $this->add_hook('logout_after', array($this, 'logout')); + } + + function startup($args) + { + if (empty($_SESSION['user_id'])) { + $args['action'] = 'login'; + } + + return $args; + } + + function authenticate($args) + { + if (!in_array('HTTP_X_REMOTE_USER', $_SERVER) || !in_array('HTTP_X_REMOTE_USER_TOKEN', $_SERVER)) { + header('HTTP/1.0 403 Forbidden'); + die(); + } + $args['user'] = $_SERVER['HTTP_X_REMOTE_USER']; + $args['pass'] = $_SERVER['HTTP_X_REMOTE_USER_TOKEN']; + + $args['cookiecheck'] = false; + $args['valid'] = true; + + return $args; + } + + function logout($args) { + // Redirect to global SSO logout path. + $this->load_config(); + + $sso_logout_url = rcmail::get_instance()->config->get('sso_logout_url'); + header("Location: " . $sso_logout_url, true); + exit; + } + + function login($args) + { + header('Location: index.php'); + exit(); + } + function login_failed($args) + { + header('Location: sso.php'); + exit(); + } + +}