diff options
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 192fb9f95..b2d6966d0 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -1821,7 +1821,8 @@ class rcmail extends rcube $error = 'errornoperm'; } // try to detect full mailbox problem and display appropriate message - else if (stripos($err_str, 'quota') !== false && stripos($err_str, 'exceed') !== false) { + // there can be e.g. "Quota exceeded" or "quotum would exceed" + else if (stripos($err_str, 'quot') !== false && stripos($err_str, 'exceed') !== false) { $error = 'erroroverquota'; } else { |