mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-05 07:44:01 +01:00
* fix "nonblock-statement-body-position" (fixed already) * fix "comma-dangle" * fix "no-regex-spaces" * fix "new-parens" * fix "object-curly-newline" * fix "object-property-newline" * fix "spaced-comment" semimanually * fix "no-constant-condition" manually * fix "unicorn/no-hex-escape" * fix "unicorn/escape-case" * fix "quote-props" * fix "no-whitespace-before-property" - fix bug/typo * fix "unicorn/empty-brace-spaces" * fix "keyword-spacing" * fix "dot-notation" * fix "no-return-assign" manually * fix "padding-line-between-statements" * fix "key-spacing" * fix "no-else-return" semimanually * fix some "no-undef" * fix case cs * Revert "fix "padding-line-between-statements"" * improve switch/case format I. * improve switch/case format II. regex: (^ *(break|return).*)\n *(\n) * fix safe "eqeqeq" * fix "radix" * fix v3.49.0 CS (static providers) * fix "string_implicit_backslashes" in php files * fix comments align * fix test static providers * fix stan * disable "final_internal_class" rule
113 lines
2.6 KiB
PHP
113 lines
2.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* File based User-to-Email and Email-to-User lookup
|
|
*
|
|
* Add it to the plugins list in config.inc.php and set
|
|
* path to a virtuser table file to resolve user names and e-mail
|
|
* addresses
|
|
* $rcmail['virtuser_file'] = '';
|
|
*
|
|
* @license GNU GPLv3+
|
|
* @author Aleksander Machniak
|
|
*/
|
|
class virtuser_file extends rcube_plugin
|
|
{
|
|
private $file;
|
|
private $app;
|
|
|
|
/**
|
|
* Plugin initialization
|
|
*/
|
|
public function init()
|
|
{
|
|
$this->app = rcmail::get_instance();
|
|
$this->file = $this->app->config->get('virtuser_file');
|
|
|
|
if ($this->file) {
|
|
$this->add_hook('user2email', [$this, 'user2email']);
|
|
$this->add_hook('email2user', [$this, 'email2user']);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* User > Email
|
|
*/
|
|
public function user2email($p)
|
|
{
|
|
$r = $this->findinvirtual('/\s' . preg_quote($p['user'], '/') . '\s*$/');
|
|
$result = [];
|
|
|
|
for ($i = 0; $i < count($r); $i++) {
|
|
$arr = preg_split('/\s+/', $r[$i]);
|
|
|
|
if (count($arr) > 0 && strpos($arr[0], '@')) {
|
|
$result[] = rcube_utils::idn_to_ascii(trim(str_replace('\@', '@', $arr[0])));
|
|
|
|
if (!empty($p['first'])) {
|
|
$p['email'] = $result[0];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
$p['email'] = empty($result) ? null : $result;
|
|
|
|
return $p;
|
|
}
|
|
|
|
/**
|
|
* Email > User
|
|
*/
|
|
public function email2user($p)
|
|
{
|
|
$r = $this->findinvirtual('/^' . preg_quote($p['email'], '/') . '\s/');
|
|
|
|
for ($i = 0; $i < count($r); $i++) {
|
|
$arr = preg_split('/\s+/', trim($r[$i]));
|
|
|
|
if (count($arr) > 0) {
|
|
$p['user'] = trim($arr[count($arr) - 1]);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return $p;
|
|
}
|
|
|
|
/**
|
|
* Find matches of the given pattern in virtuser file
|
|
*
|
|
* @param string $pattern Regular expression to search for
|
|
*
|
|
* @return array Matching entries
|
|
*/
|
|
private function findinvirtual($pattern)
|
|
{
|
|
$result = [];
|
|
$virtual = null;
|
|
|
|
if ($this->file) {
|
|
$virtual = file($this->file);
|
|
}
|
|
|
|
if (empty($virtual)) {
|
|
return $result;
|
|
}
|
|
|
|
// check each line for matches
|
|
foreach ($virtual as $line) {
|
|
$line = trim($line);
|
|
if (empty($line) || $line[0] == '#') {
|
|
continue;
|
|
}
|
|
|
|
if (preg_match($pattern, $line)) {
|
|
$result[] = $line;
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|