From 1a6323f0a58976db68ee3e8eacfb04e93c335ca2 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 21 Nov 2011 14:19:53 +0000 Subject: - More package.xml files git-svn-id: https://svn.roundcube.net/trunk@5459 208e9e7b-5314-0410-a742-e7e81cd9613c --- plugins/show_additional_headers/package.xml | 49 ++++++++++++++++ .../show_additional_headers.php | 2 +- plugins/subscriptions_option/package.xml | 67 +++++++++++++++++++++ .../subscriptions_option/subscriptions_option.php | 2 +- plugins/userinfo/package.xml | 68 ++++++++++++++++++++++ plugins/virtuser_file/package.xml | 47 +++++++++++++++ plugins/virtuser_file/virtuser_file.php | 16 ++--- plugins/virtuser_query/package.xml | 47 +++++++++++++++ plugins/virtuser_query/virtuser_query.php | 2 +- 9 files changed, 289 insertions(+), 11 deletions(-) create mode 100644 plugins/show_additional_headers/package.xml create mode 100644 plugins/subscriptions_option/package.xml create mode 100644 plugins/userinfo/package.xml create mode 100644 plugins/virtuser_file/package.xml create mode 100644 plugins/virtuser_query/package.xml diff --git a/plugins/show_additional_headers/package.xml b/plugins/show_additional_headers/package.xml new file mode 100644 index 000000000..00d65812b --- /dev/null +++ b/plugins/show_additional_headers/package.xml @@ -0,0 +1,49 @@ + + + show_additional_headers + pear.roundcube.net + Displays additional message headers + + Proof-of-concept plugin which will fetch additional headers and display them in the message view. + + + Thomas Bruederli + thomasb + roundcube@gmail.com + yes + + 2011-11-21 + + 1.1 + 1.1 + + + stable + stable + + GNU GPLv2 + - + + + + + + + + + + + + + 5.2.1 + + + 1.7.0 + + + + + diff --git a/plugins/show_additional_headers/show_additional_headers.php b/plugins/show_additional_headers/show_additional_headers.php index 0007ce335..78fd6be5a 100644 --- a/plugins/show_additional_headers/show_additional_headers.php +++ b/plugins/show_additional_headers/show_additional_headers.php @@ -9,7 +9,7 @@ * Enable the plugin in config/main.inc.php and add your desired headers: * $rcmail_config['show_additional_headers'] = array('User-Agent'); * - * @version 1.0 + * @version @package_version@ * @author Thomas Bruederli * @website http://roundcube.net */ diff --git a/plugins/subscriptions_option/package.xml b/plugins/subscriptions_option/package.xml new file mode 100644 index 000000000..11282504f --- /dev/null +++ b/plugins/subscriptions_option/package.xml @@ -0,0 +1,67 @@ + + + subscriptions_option + pear.roundcube.net + Option to disable IMAP subscriptions + + A plugin which can enable or disable the use of imap subscriptions. + It includes a toggle on the settings page under "Server Settings". + The preference can also be locked. + + + Thomas Bruederli + thomasb + roundcube@gmail.com + yes + + + Ziba Scott + ziba@umich.edu + + 2011-11-21 + + 1.1 + 1.1 + + + stable + stable + + GNU GPLv2 + - + + + + + + + + + + + + + + + + + + + + + + + + + 5.2.1 + + + 1.7.0 + + + + + diff --git a/plugins/subscriptions_option/subscriptions_option.php b/plugins/subscriptions_option/subscriptions_option.php index c0eb90c22..4db9b8102 100644 --- a/plugins/subscriptions_option/subscriptions_option.php +++ b/plugins/subscriptions_option/subscriptions_option.php @@ -19,7 +19,7 @@ * 'dont_override' list and the global option has changed, don't expect * to see the change until the folder list cache is refreshed. * - * @version 1.1 + * @version @package_version@ * @author Ziba Scott */ class subscriptions_option extends rcube_plugin diff --git a/plugins/userinfo/package.xml b/plugins/userinfo/package.xml new file mode 100644 index 000000000..b337517e8 --- /dev/null +++ b/plugins/userinfo/package.xml @@ -0,0 +1,68 @@ + + + userinfo + pear.roundcube.net + Information about logged in user + + Sample plugin that adds a new tab to the settings section + to display some information about the current user. + + + Thomas Bruederli + thomasb + roundcube@gmail.com + yes + + 2011-11-21 + + 1.0 + 1.0 + + + stable + stable + + GNU GPLv2 + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5.2.1 + + + 1.7.0 + + + + + diff --git a/plugins/virtuser_file/package.xml b/plugins/virtuser_file/package.xml new file mode 100644 index 000000000..3e67e49aa --- /dev/null +++ b/plugins/virtuser_file/package.xml @@ -0,0 +1,47 @@ + + + virtuser_file + pear.roundcube.net + File based User-to-Email and Email-to-User lookup + Plugin adds possibility to resolve user email/login according to lookup tables in files. + + Aleksander Machniak + alec + alec@alec.pl + yes + + 2011-11-21 + + 1.0 + 1.0 + + + stable + stable + + GNU GPLv2 + - + + + + + + + + + + + + + 5.2.1 + + + 1.7.0 + + + + + diff --git a/plugins/virtuser_file/virtuser_file.php b/plugins/virtuser_file/virtuser_file.php index 9d4efd12b..51a6bc499 100644 --- a/plugins/virtuser_file/virtuser_file.php +++ b/plugins/virtuser_file/virtuser_file.php @@ -2,13 +2,13 @@ /** * File based User-to-Email and Email-to-User lookup - * + * * Add it to the plugins list in config/main.inc.php and set * path to a virtuser table file to resolve user names and e-mail * addresses * $rcmail_config['virtuser_file'] = ''; * - * @version 1.0 + * @version @package_version@ * @author Aleksander Machniak */ class virtuser_file extends rcube_plugin @@ -63,7 +63,7 @@ class virtuser_file extends rcube_plugin for ($i=0; $i 0) { $p['user'] = trim($arr[count($arr)-1]); break; @@ -83,23 +83,23 @@ class virtuser_file extends rcube_plugin { $result = array(); $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; } diff --git a/plugins/virtuser_query/package.xml b/plugins/virtuser_query/package.xml new file mode 100644 index 000000000..58f697019 --- /dev/null +++ b/plugins/virtuser_query/package.xml @@ -0,0 +1,47 @@ + + + virtuser_query + pear.roundcube.net + SQL based User-to-Email and Email-to-User lookup + Plugin adds possibility to resolve user email/login according to lookup tables in SQL database. + + Aleksander Machniak + alec + alec@alec.pl + yes + + 2011-11-21 + + 1.1 + 1.1 + + + stable + stable + + GNU GPLv2 + - + + + + + + + + + + + + + 5.2.1 + + + 1.7.0 + + + + + diff --git a/plugins/virtuser_query/virtuser_query.php b/plugins/virtuser_query/virtuser_query.php index e59095f29..21a869c57 100644 --- a/plugins/virtuser_query/virtuser_query.php +++ b/plugins/virtuser_query/virtuser_query.php @@ -14,7 +14,7 @@ * * $rcmail_config['virtuser_query'] = array('email' => '', 'user' => '', 'host' => ''); * - * @version 1.1 + * @version @package_version@ * @author Aleksander Machniak * @author Steffen Vogel */ -- cgit v1.2.3