Thomas Bruederli
2013-11-22 8d3a9d3213c34b9114762f748b48a71854eaa0bc
Merge branch 'master' of github.com:roundcube/roundcubemail
4 files modified
12 ■■■■■ changed files
plugins/managesieve/Changelog 3 ●●●●● patch | view | raw | blame | history
plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php 2 ●●● patch | view | raw | blame | history
plugins/managesieve/managesieve.js 2 ●●● patch | view | raw | blame | history
program/js/list.js 5 ●●●●● patch | view | raw | blame | history
plugins/managesieve/Changelog
@@ -1,8 +1,11 @@
* version 7.1 [2013-11-22]
-----------------------------------------------------------
- lib/Net Sieve.php moved to Roundcube /lib directory
- Added managesieve_domains option to limit redirect destinations
- Fix bug where at least one additional address of vacation message was required (#1489345)
- Fix so i;ascii-numeric comparator is not forced as default for :count and :value operators
- Fix date/currentdate related form issues and comparators handling (#1489346)
- Fix a bug where deleted filter was not removed from the list
* version 7.0 [2013-09-09]
-----------------------------------------------------------
plugins/managesieve/lib/Roundcube/rcube_sieve_engine.php
@@ -53,7 +53,7 @@
        "x-beenthere",
    );
    const VERSION  = '7.0';
    const VERSION  = '7.1';
    const PROGNAME = 'Roundcube (Managesieve)';
    const PORT     = 4190;
plugins/managesieve/managesieve.js
@@ -161,7 +161,7 @@
{
  var i, rows = this.filters_list.rows;
  for (i=0; i<rows.length; i++)
  for (i in rows)
    if (rows[i] != null && rows[i].uid == id)
      return i;
};
program/js/list.js
@@ -91,8 +91,7 @@
    var r, len, rows = this.tbody.childNodes;
    for (r=0, len=rows.length; r<len; r++) {
      this.init_row(rows[r]);
      this.rowcount++;
      this.rowcount += this.init_row(rows[r]) ? 1 : 0;
    }
    this.init_header();
@@ -148,6 +147,8 @@
    this.row_init(this.rows[uid]);  // legacy support
    this.triggerEvent('initrow', this.rows[uid]);
    return true;
  }
},