浏览代码

And now for the other years of the sent_subfolder on cyrus

thomppj 23 年之前
父节点
当前提交
cc34efd8dd
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      functions/imap_mailbox.php

+ 6 - 1
functions/imap_mailbox.php

@@ -28,7 +28,12 @@ function isSpecialMailbox( $box ) {
                 $i = strlen( $box );
             }
         } else {
-            $i = strlen( $box );
+            // Skip next second delimiter
+            $i = strpos( $sent_folder, $delimiter );
+            $i = strpos( $sent_folder, $delimiter, $i+ 1  );
+            if ( $i === FALSE ) {
+                $i = strlen( $box );
+            }
         }
     }