aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-shell-settings.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug #637906 - Don't ask again when sending to non-mail recipientsMilan Crha2011-01-061-0/+4
|
* Bug #567879 - Add View >> Gallery Option In Email ComposerMilan Crha2010-12-221-0/+4
|
* Add option "Check for new messages in all active accounts"Milan Crha2010-11-301-0/+4
| | | | As a follow-up for bug #633949
* Bug #633949 - Add an option to disable new e-mail check at startupMilan Crha2010-11-301-0/+4
|
* Reduce GConf usage in em-composer-utils.c.Matthew Barnes2010-10-201-2/+2
| | | | | | | | | | | | | | | | | | To reduce GConf usage in em-composer-utils.c: - Relevant functions in em-composer-utils.c now take arguments for reply and forward styles. - Redundant forwarding functions were removed: em_utils_forward_attached() em_utils_forward_inline() em_utils_forward_quoted() - EMailReader now has "forward-style" and "reply-style" properties, which get bound to the appropriate EShellSettings properties in modules/mail/e-mail-config-reader.c. These same EShellSettings properties are bound to the combo boxes in Composer Preferences.
* Add an "ellipsize" property to EMFolderTree.Matthew Barnes2010-10-191-1/+49
| | | | | | So we don't have to access GConf directly from EMFolderTree. The property gets bound to an EShellSettings property, which is in turn bound to the "no_folder_dots" GConf key by way of a transform function.
* Give MailSession a permanent home.Matthew Barnes2010-10-131-6/+16
| | | | | | | | | | | Global variables in shared libraries are a bad idea. EMailBackend now owns the MailSession instance, which is actually now EMailSession. Move the blocking utility functions in mail-tools.c to e-mail-session.c and add asynchronous variants. Same approach as Camel. Replace EMailReader.get_shell_backend() with EMailReader.get_backend(), which returns an EMailBackend. Easier access to the EMailSession.
* Kill the subject-thread plugin.Matthew Barnes2010-09-151-0/+4
| | | | | | All this time I never realized the subject-thread plugin was nothing more than a stupid checkbox. The actual thread-by-subject code lives in the core mail library.
* Add nag popup when mailing list hijacks private reply with Reply-To: headerDavid Woodhouse2010-07-161-0/+4
|
* Change 'Reply to All' toolbar button into configurable 'Group Reply'David Woodhouse2010-07-151-0/+4
| | | | | ...with a dropdown menu like the Forward button, and configuration for whether it tries to do 'Reply to List' by default.
* Add support for ignoring mailing list Reply-To: headersDavid Woodhouse2010-07-151-0/+4
|
* Warn on reply-to-all with too many recipientsDavid Woodhouse2010-07-151-0/+4
|
* Bug 624204 - Warn when replying privately to a mailing list messageDavid Woodhouse2010-07-151-0/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2010-06-201-1/+1
|
* Bug 501534 - apply new customized view to all foldersChenthill Palanisamy2010-06-081-0/+4
|
* Bug 619010 - Mailer's crash avoidance features are brokenMatthew Barnes2010-05-191-0/+4
|
* Camel is now GObject-based.Matthew Barnes2010-04-241-1/+1
|
* Bug #597582 - Original Date: header should be given precedenceDavid Woodhouse2009-11-051-0/+4
|
* Bug #522783 - Signature separator for HTML E-mailsMilan Crha2009-10-161-0/+4
| | | | | | | | Reapplied patch from bug #551470, as this got dropped on merging. Be sure you all also gconftool-2 --install-schema-file=$PREFIX/etc/gconf/schemas/evolution-mail.schemas as new key had been added.
* Simplify binding EShellSettings properties to GConf keys.Matthew Barnes2009-08-011-405/+78
|
* Fix excessive whitespace.Matthew Barnes2009-07-141-1/+0
|
* Use an EShellSettings property for folder tree search.Matthew Barnes2009-07-111-0/+12
|
* Kill the last GtkOptionMenu instances.Matthew Barnes2009-07-031-2/+14
| | | | | | | Wrote a new widget (ECharsetComboBox) to replace e-charset-picker.c. The widget provides a "charset" string property that allows us to bind to GConf keys (via EShellSettings). Moved e_charset_add_radio_actions() to e-util/e-charset.c. Updated Glade files, #include lines, etc.
* Fix merge issues in EMAccountEditor.Matthew Barnes2009-07-021-0/+12
|
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+521
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.