diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-08-29 11:27:02 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-08-29 11:27:02 +0200 |
commit | 0c2ffb57a11f4a417ed2d48eea882d92c7ded3ca (patch) | |
tree | b0eb1cb05f4cc25df797dade417358342681ff78 /program/steps/mail | |
parent | 05da1577aaa51cef329849c495469903333c59f2 (diff) |
Allow setting INBOX as Sent folder (#1489219)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index e14d25ee3..d18f50fa4 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -177,7 +177,9 @@ function rcmail_message_list_smart_column_name() $sent_mbox = $RCMAIL->config->get('sent_mbox'); $drafts_mbox = $RCMAIL->config->get('drafts_mbox'); - if (strpos($mbox.$delim, $sent_mbox.$delim) === 0 || strpos($mbox.$delim, $drafts_mbox.$delim) === 0) { + if ((strpos($mbox.$delim, $sent_mbox.$delim) === 0 || strpos($mbox.$delim, $drafts_mbox.$delim) === 0) + && strtoupper($mbox) != 'INBOX' + ) { return 'to'; } |