#1485242: better handling of situation when message was sent successfully but cannot be saved
| | |
| | | }; |
| | | |
| | | |
| | | 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); |
| | | } |
| | | |
| | | |
| | |
| | | $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'; |
| | |
| | | $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'; |
| | |
| | | $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?'; |
| | |
| | | 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) |
| | |
| | | } |
| | | |
| | | 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'); |
| | | } |
| | | |