Displaying 1 result from an estimated 1 matches for "testblacklistmark".
Did you mean:
  testblacklistmarker
  
2009 Jul 20
3
Bug in Dovecot Managesieve or Horde ?
...ll patches in Horde code resolves that, but I do not know if that's
the right way.
cd webmail2/ingo/lib
vi ./Script/sieve.php:
    function requires()
    {
        //return array('imapflags');
        return array('imap4flags');
    }
vi ./tests/SieveTest.php:
    function testBlacklistMarker()
    {
        $bl = &new Ingo_Storage_blacklist(3);
        $bl->setBlacklist(array('spammer at example.com'));
        $bl->setBlacklistFolder(INGO_BLACKLIST_MARKER);
        $this->store($bl);
        //$this->assertScript('require "imapflags";
        $...