Commit Graph

92 Commits

Author SHA1 Message Date
4c0c362180 Bug 255032 - Be able to write a note on a mail 2015-09-21 16:17:02 +02:00
d01b38b043 Bug 752425 - Prompt user when To/Cc field contains many recipients 2015-08-05 18:51:49 +02:00
50edd194c3 Bug 707356 - Move folder confirmation dialog needs redone 2015-04-28 16:08:44 +02:00
bcb78b9253 Bug 702707 - Follow up flags is not displayed when reading message 2015-04-22 13:28:33 +02:00
3c4bfddd0c Bug 236994 - Add option to load remote content for specified site or sender 2015-03-30 15:15:26 +02:00
c569546604 Bug 741129 - Correct couple translatable strings 2015-01-06 11:20:02 +01:00
a5513b3ea6 Provide descriptive error message when an e-mail is not available in offline 2014-11-06 10:36:42 +01:00
4a8c3fa737 Bug 300871 - Ignore a specific thread 2014-10-27 22:26:29 +01:00
ffc21b90ee Propagate Send/Receive errors to UI
A follow-up change to bug 719379, to propagate errors from Send/Receive
into UI, instead of to the console.
2014-06-24 12:34:42 +02:00
c803769454 Adapt to new CamelSession "user-alert" signal.
Replaces the old interactive (but not really) alert_user() method.
2013-11-27 10:02:59 -05:00
d54a3443d8 Bug 684302 - Prompt to close message window on reply should be inline
Pop-up dialog is far too intrusive.  Instead ask the question as an
inline alert in the message window, which does not interrupt the user.
2013-06-04 16:12:36 -04:00
7770e7c365 Merge [mark-all-read] plugin into core code
During fixes on bug #602428, rather than do everything twice,
I merged the plugin into the core code, thus it should be easier
to maintain as well.
2013-05-03 18:11:37 +02:00
2e07947a51 Bug #502516 - Avoid "source" string in user visible dialogs 2012-12-03 17:55:55 +01:00
ad76248e8d mail.error.xml: Remove GroupWise-specific errors. 2012-08-03 11:40:13 -04:00
b95e110b94 Remove "modal" attribute from error.xml files.
The "modal" attribute is ignored nowadays anyway, but these should have
never been modal to begin with.
2012-08-03 11:40:13 -04:00
550efe7b4a mail.error.xml: Remove "mail:session-message-*" errors.
Use "system:simple-info/warning/error" errors instead.
2012-07-25 22:15:40 -04:00
0a359ba982 Add e_mail_reader_expunge_folder().
Wraps e_mail_folder_expunge() with EActivity/EAlert stuff and also
prompt for confirmation.
2012-07-09 08:44:22 -04:00
84cfc5b80c Add e_mail_reader_refresh_folder().
To replace mail_refresh_folder().
2012-07-09 08:44:22 -04:00
9c79788481 Add e_mail_reader_unsubscribe_folder_name().
Replaces e_mail_session_unsubscribe_folder().
2012-07-09 08:44:22 -04:00
749b49e507 Disconnect a CamelService after editing its settings.
This will force Evolution to reconnect to the service using the current
settings.  However this is not a complete solution.  If the new settings
now point to a completely different mail account, we leave behind cached
messages and database tables from the previous account such that you end
up with some weird hybrid of the previous account and current account.

I guess for now the answer is "don't do that", but we should try to
handle that more gracefully in the future -- more for architectural
correctness than it being a common real world use case.
2012-07-06 15:35:41 -04:00
3449e5fcc7 Adapt mail to the new ESource API. 2012-06-02 23:00:40 -04:00
f177221c7c Fix wording in two strings 2012-04-18 21:23:00 +02:00
37e79dec82 Bug #245025 - Popup confirmation when moving a folder (via drag and drop) 2012-04-06 18:31:41 +02:00
954b3f1cc4 Bug #670445 - Folder deletion in offline shows strange behavior
Providing a check for online backend before proceeding for the operation.
2012-03-29 12:15:06 +05:30
6d2c382788 WebKit port - port formatter and mail module 2012-03-28 18:38:25 +02:00
e4a43ad1a8 mail.error.xml: Fix a typo. 2012-03-17 13:20:18 -04:00
c4fedc0494 Split MDN handling into a module. 2011-11-22 00:12:36 -05:00
d03f8dfccb Bug #440316 - Improve SSL Certificate check bad signature dialog 2011-11-15 12:56:42 +01:00
273b10a5ba Bug #657374 - mailto: attachment parameter can lead to accidental data exfiltration
Through warning on attaching Hidden/security files by mailto command.
2011-10-04 12:08:43 +05:30
5817e1ffb9 Reverting the previous commit. 2011-09-15 18:18:12 +05:30
1544ad3a69 Bug #657374 - mailto: attachment parameter can lead to accidental data exfiltration
Through warning on attaching Hidden/security files by mailto command.
2011-09-15 18:03:53 +05:30
b7cfbb7d67 Bug #656267 - Checking for auth types doesn't work properly 2011-08-12 11:30:03 +02:00
f0a011f941 Remove mail_save_messages().
Use e_mail_folder_save_messages() instead.
2011-05-18 09:25:59 -04:00
b3b917365f Remove mail_store_prepare_offline().
Use e_mail_store_prepare_for_offline() instead.
2011-05-17 19:51:11 -04:00
b61d2c08d7 Remove mail_remove_attachments().
Use e_mail_folder_remove_attachments() instead.
2011-05-16 22:43:46 -04:00
e5760e065f Reimplement em_utils_forward_messages().
Now uses e_mail_folder_build_attachment() and
e_mail_folder_get_multiple_messages().
2011-05-11 12:58:53 -04:00
63a7f4d1cc EMailReader: Reimplement "mail-remove-duplicates" action.
Now uses e_mail_folder_find_duplicate_messages().
2011-05-11 12:58:42 -04:00
ae28ea4621 EMailShellView: Open the selected folder ourselves.
This one's a little involved:

 - EMailShellView now obtains a CamelFolder itself in response to
   EMFolderTree::folder-selected signals.  Uses EActivity to do so.

 - Revise EMFolderTree::folder-selected signal arguments to be more
   useful: emit a CamelStore object instead of a folder URI.

 - Also revise EMFolderTree::folder-activiated signal arguments the
   same way while we're at it.

 - Remove the "folder_uri" argument from e_mail_reader_set_folder().
   If you have a CamelFolder object you can obtain the URI string by
   calling camel_folder_get_uri().
2011-05-02 21:01:48 -04:00
9d7c930d70 Bug 547954 - Clarify delete-from-search-folder warning 2011-04-22 14:53:49 -04:00
35a998b2de Demonstrate EWebView as an EAlertSink. 2011-04-13 12:09:07 -04:00
88c041d2bc Change "mail:async-error" alerts to warnings.
Most Camel alerts are transient.  Make them warnings so they time out.
2011-03-25 14:21:57 -04:00
e962715a18 Improve wording of Maildir migration dialog.
Use stronger wording and remove the "No" option.  Your choices are
"Migrate Now" or "Quit Evolution".  None of this in-between nonsense.
2011-01-07 13:35:19 -05:00
e3dda0436d Migrate the local store from mbox to maildir format 2010-11-23 02:04:03 +05:30
c211a974e3 Kill em_folder_utils_unsubscribe_folder().
Use e_mail_session_unsubscribe_folder() instead.
2010-10-31 22:54:30 -04:00
df6f8dc010 Bug #587011 - Integrate remove-duplicates into evolution 2010-10-15 09:39:16 +02:00
d515cfc332 Bug #223337 - Auto-close message-browser when replying to them 2010-10-08 12:16:53 +02:00
51a41db621 Add nag popup when mailing list hijacks private reply with Reply-To: header 2010-07-15 17:20:16 +01:00
8b8fdabfa6 Warn on reply-to-all with too many recipients 2010-07-15 16:48:45 +01:00
0f7b73d639 Bug 624204 - Warn when replying privately to a mailing list message 2010-07-15 16:48:45 +01:00
578e071825 Bug 619637 - Inconsistent buttons in delete confirmation dialogs 2010-05-28 22:41:59 -04:00