diff options
author | alecpl <alec@alec.pl> | 2008-04-11 13:34:19 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-11 13:34:19 +0000 |
commit | eaa39477bd53130e68bfb26d63308cc9b6af9369 (patch) | |
tree | 84e278a4b3e813693dc6b9a92232434da0daca40 /program/steps/settings/func.inc | |
parent | cb6b51ee7647924403a81cf5b9443936f7c5a901 (diff) |
#1483863: empty trash and expunge inbox on logout
Diffstat (limited to 'program/steps/settings/func.inc')
-rw-r--r-- | program/steps/settings/func.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index befc1d7a0..3edced4b3 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -195,6 +195,28 @@ function rcmail_user_prefs_form($attrib) $select_autosave->show($CONFIG['draft_autosave'])); } + // Trash purging on logout + if (!isset($no_override['logout_purge'])) + { + $field_id = 'rcmfd_logout_purge'; + $input_purge = new checkbox(array('name' => '_logout_purge', 'id' => $field_id, 'value' => 1)); + $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", + $field_id, + Q(rcube_label('logoutclear')), + $input_purge->show($CONFIG['logout_purge']?1:0)); + } + + // INBOX compacting on logout + if (!isset($no_override['logout_expunge'])) + { + $field_id = 'rcmfd_logout_expunge'; + $input_expunge = new checkbox(array('name' => '_logout_expunge', 'id' => $field_id, 'value' => 1)); + $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", + $field_id, + Q(rcube_label('logoutcompact')), + $input_expunge->show($CONFIG['logout_expunge']?1:0)); + } + $out .= "\n</table>$form_end"; return $out; |