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)
Change History (7)
Changed 2 years ago by tomamplius
comment:1 Changed 2 years ago by tomamplius
- Cc tomamplius@… added
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
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.

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>';