X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=include%2Ferrors.php;h=2bbb3a3ec98c782e022e716b35a8d26274a0b098;hp=972d40d926df3e2a30b4e71977699aed23f27453;hb=da0135f62f730728c0c08c1ce5786c6332a366f2;hpb=6d31e3a336f60a88ffef070c60df49591f02c18c diff --git a/include/errors.php b/include/errors.php index 972d40d9..2bbb3a3e 100644 --- a/include/errors.php +++ b/include/errors.php @@ -3,7 +3,7 @@ /** * errors.php * - * @copyright © 2005-2006 The SquirrelMail Project Team + * @copyright © 2005-2007 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -49,6 +49,21 @@ $aErrors['SQM_IMAP_BADCHARSET'] = array( 'tip' => _("Run \"configure\", choose option 4 (General options) and set option 12 (Allow server charset search) to false) or choose option 10 (Language settings) and set option 2 (Default charset) to a charset supported by your IMAP server.") ); +$aErrors['SQM_IMAP_APPEND_QUOTA_ERROR'] = array( + 'level' => E_USER_NOTICE, + 'category' => SQM_ERROR_IMAP, + 'message' => _( "Out of quota error."), + 'link' => '', + 'tip' => _("Remove unneccessary messages from your folders. Start with your Trash folder.") +); + +$aErrors['SQM_IMAP_APPEND_ERROR'] = array( + 'level' => E_USER_NOTICE, + 'category' => SQM_ERROR_IMAP, + 'message' => _( "An error occured when SquirrelMail appended a message to the mailbox as listed in this message."), + 'link' => '' +); + $aErrors['SQM_IMAP_ERROR'] = array( 'level' => E_USER_ERROR, 'category' => SQM_ERROR_IMAP, @@ -56,6 +71,13 @@ $aErrors['SQM_IMAP_ERROR'] = array( _("Please contact your system administrator and report this error."), 'link' => '' ); -//$aError['SQM_FS'] // Filesystem related errors -?> \ No newline at end of file +$aErrors['SQM_IMAP_BYE'] = array( + 'level' => E_USER_ERROR, + 'category' => SQM_ERROR_IMAP, + 'message' => _( "IMAP server closed the connection.") . "\n" . + _("Please contact your system administrator and report this error."), + 'link' => '' +); + +//$aError['SQM_FS'] // Filesystem related errors