Merge branch 'master' of github.com:roundcube/roundcubemail

pull/37/head
Thomas Bruederli 12 years ago
commit 05c4edf34b

@ -453,8 +453,8 @@ class rcube_install
'0.4-beta', '0.4.2',
'0.5-beta', '0.5', '0.5.1',
'0.6-beta', '0.6',
'0.7-beta', '0.7', '0.7.1', '0.7.2',
'0.8-beta', '0.8-rc', '0.8.0',
'0.7-beta', '0.7', '0.7.1', '0.7.2', '0.7.3',
'0.8-beta', '0.8-rc', '0.8.0', '0.8.1',
));
return $select;
}

@ -1,7 +1,10 @@
* version 6.0 [2012-10-03]
-----------------------------------------------------------
- Fixed issue with DBMail bug [http://pear.php.net/bugs/bug.php?id=19077] (#1488594)
- Added support for enotify/notify (RFC5435, RFC5436, draft-ietf-sieve-notify-00)
- Change default port to 4190 (IANA-allocated), add port auto-detection (#1488713)
- Added request size limits detection and script corruption prevention (#1488648)
- Fix so scripts listed in managesieve_filename_exceptions aren't displayed on the list (#1488724)
* version 5.2 [2012-07-24]
-----------------------------------------------------------

@ -62,7 +62,7 @@ class managesieve extends rcube_plugin
"x-beenthere",
);
const VERSION = '5.2';
const VERSION = '6.0';
const PROGNAME = 'Roundcube (Managesieve)';
const PORT = 4190;
@ -1839,6 +1839,12 @@ class managesieve extends rcube_plugin
if ($active = $this->sieve->get_active()) {
$this->active = array($active);
}
// Hide scripts from config
$exceptions = $this->rc->config->get('managesieve_filename_exceptions');
if (!empty($exceptions)) {
$this->list = array_diff($this->list, (array)$exceptions);
}
}
return $this->list;

@ -17,10 +17,10 @@
<email>alec@alec.pl</email>
<active>yes</active>
</lead>
<date>2012-07-24</date>
<date>2012-10-03</date>
<version>
<release>5.2</release>
<api>5.0</api>
<release>6.0</release>
<api>6.0</api>
</version>
<stability>
<release>stable</release>
@ -95,6 +95,15 @@
<file name="skins/classic/images/down_small.gif" role="data"></file>
<file name="skins/classic/images/filter.png" role="data"></file>
<file name="skins/classic/images/up_small.gif" role="data"></file>
<file name="skins/larry/managesieve.css" role="data"></file>
<file name="skins/larry/managesieve_mail.css" role="data"></file>
<file name="skins/larry/templates/filteredit.html" role="data"></file>
<file name="skins/larry/templates/managesieve.html" role="data"></file>
<file name="skins/larry/templates/setedit.html" role="data"></file>
<file name="skins/larry/images/add.png" role="data"></file>
<file name="skins/larry/images/del.png" role="data"></file>
<file name="skins/larry/images/down_small.gif" role="data"></file>
<file name="skins/larry/images/up_small.gif" role="data"></file>
<file name="managesieve.php" role="php"></file>
<file name="lib/rcube_sieve.php" role="php"></file>
<file name="lib/rcube_sieve_script.php" role="php"></file>

Loading…
Cancel
Save