alecpl
2008-08-13 9a5762a4de13a23a45ac9b85ff475aaf877cf906
#1485242: better handling of situation when message was sent successfully but cannot be saved


5 files modified
21 ■■■■ changed files
program/js/app.js 4 ●●●● patch | view | raw | blame | history
program/localization/en_GB/messages.inc 1 ●●●● patch | view | raw | blame | history
program/localization/en_US/messages.inc 1 ●●●● patch | view | raw | blame | history
program/localization/pl_PL/messages.inc 3 ●●●● patch | view | raw | blame | history
program/steps/mail/sendmail.inc 12 ●●●● patch | view | raw | blame | history
program/js/app.js
@@ -2206,10 +2206,10 @@
    };
  this.sent_successfully = function(msg)
  this.sent_successfully = function(type, msg)
    {
    this.list_mailbox();
    this.display_message(msg, 'confirmation', true);
    this.display_message(msg, type, true);
    }
program/localization/en_GB/messages.inc
@@ -40,6 +40,7 @@
$messages['nocontactsfound'] = 'No contacts found';
$messages['contactnotfound'] = 'The requested contact was not found';
$messages['sendingfailed'] = 'Failed to send message';
$messages['errorsavingsent'] = 'An error occured while saving sent message';
$messages['errorsaving'] = 'An error occured while saving';
$messages['errormoving'] = 'Could not move the message';
$messages['errordeleting'] = 'Could not delete the message';
program/localization/en_US/messages.inc
@@ -40,6 +40,7 @@
$messages['nocontactsfound'] = 'No contacts found';
$messages['contactnotfound'] = 'The requested contact was not found';
$messages['sendingfailed'] = 'Failed to send message';
$messages['errorsavingsent'] = 'An error occured while saving sent message';
$messages['errorsaving'] = 'An error occured while saving';
$messages['errormoving'] = 'Could not move the message';
$messages['errordeleting'] = 'Could not delete the message';
program/localization/pl_PL/messages.inc
@@ -45,7 +45,8 @@
$messages['nocontactsfound'] = 'Nie znaleziono kontaktu!';
$messages['contactnotfound'] = 'Szukany kontakt nie został odnaleziony';
$messages['sendingfailed'] = 'Nie udało się wysłać wiadomości!';
$messages['errorsaving'] = 'Błąd podczas zapisu!';
$messages['errorsavingsent'] = 'Wystąpił błąd podczas zapisu wysłanej wiadomości!';
$messages['errorsaving'] = 'Wystąpił błąd podczas zapisu!';
$messages['errormoving'] = 'Nie można przenieść wybranej wiadomości!';
$messages['errordeleting'] = 'Nie można usunąć wiadomości!';
$messages['deletecontactconfirm'] = 'Czy na pewno chcesz usunąć wybrane kontakty?';
program/steps/mail/sendmail.inc
@@ -377,8 +377,10 @@
    raise_error(array('code' => 800, 'type' => 'imap', 'file' => __FILE__,
                      'message' => "Could not save message in $store_target"), TRUE, FALSE);
    
    $OUTPUT->show_message('errorsaving', 'error');
    $OUTPUT->send('iframe');
    if ($savedraft) {
      $OUTPUT->show_message('errorsaving', 'error');
      $OUTPUT->send('iframe');
      }
    }
  if ($olddraftmessageid)
@@ -434,7 +436,11 @@
    }
  rcmail_compose_cleanup();
  $OUTPUT->command('sent_successfully', rcube_label('messagesent'));
  if ($store_folder && !$saved)
    $OUTPUT->command('sent_successfully', 'error', rcube_label('errorsavingsent'));
  else
    $OUTPUT->command('sent_successfully', 'confirmation', rcube_label('messagesent'));
  $OUTPUT->send('iframe');
  }