Opened 2 years ago

Closed 2 years ago

#1487449 closed Feature Patches (fixed)

Patch for roundcubemail managesieve plugins to add imapflag manage

Reported by: tomamplius Owned by:
Priority: 5 Milestone: 0.6-beta
Component: Plugins Version: git-master
Severity: normal Keywords: imapflags managesieve
Cc: tomamplius@…

Description

Patch for roundcubemail managesieve plugins to add imapflag manage

Attachments (3)

imapflag.patch (8.5 KB) - added by tomamplius 2 years ago.
imapflags.patch (9.4 KB) - added by tomamplius 2 years ago.
flags.patch (14.6 KB) - added by alec 2 years ago.
improved and updated version

Download all attachments as: .zip

Change History (7)

Changed 2 years ago by tomamplius

comment:1 Changed 2 years ago by tomamplius

  • Cc tomamplius@… added

it's possible to add \Answered \Draft \Deleted with (but i don't know if you want this flag)

$out .= '<option value="\\\\Answered"'.($action['flag'] == "\\\\Answered" ? ' selected="selected"' : '') .'>'  . Q($this->gettext('markanswered')) . '</option>'; 
$out .= '<option value="\\\\Draft"'.($action['flag'] == "\\\\Draft" ? ' selected="selected"' : '') .'>'  . Q($this->gettext('markdraft')) . '</option>'; 
$out .= '<option value="\\\\Deleted"'.($action['flag'] == "\\\\Deleted" ? ' selected="selected"' : '') .'>'  . Q($this->gettext('markdeleted')) . '</option>';


Changed 2 years ago by tomamplius

comment:2 Changed 2 years ago by tomamplius

  • Version changed from 0.5-beta to svn-trunk

comment:3 Changed 2 years ago by tomamplius

  • Keywords managesieve added

Changed 2 years ago by alec

improved and updated version

comment:4 Changed 2 years ago by alec

  • Resolution set to fixed
  • Status changed from new to closed

Applied in r4522/svn.

Note: See TracTickets for help on using tickets.