aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-store.h
diff options
context:
space:
mode:
author8 <NotZed@Ximian.com>2001-09-19 05:43:00 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-09-19 05:43:00 +0800
commit8347ce1403c68a408a3b9952f6486b5ac584104b (patch)
tree3df009be2f1e694e277133818acb872904d10392 /camel/camel-store.h
parent390621f624b0be7485abdba29d0fe46c905156c8 (diff)
downloadgsoc2013-evolution-8347ce1403c68a408a3b9952f6486b5ac584104b.tar.gz
gsoc2013-evolution-8347ce1403c68a408a3b9952f6486b5ac584104b.tar.zst
gsoc2013-evolution-8347ce1403c68a408a3b9952f6486b5ac584104b.zip
If filter inbox is set on the store, and we're opening inbox '', then
2001-09-18 <NotZed@Ximian.com> * providers/local/camel-maildir-folder.c (camel_maildir_folder_new): If filter inbox is set on the store, and we're opening inbox '', then enable filtering on new messages. * providers/local/camel-local-folder.c (camel_local_folder_construct): After loading the summary, check it, and only abort if that fails. Also maintain the changes count. * providers/local/camel-local-summary.c (camel_local_summary_load): Remove summary_check code from here. (camel_local_summary_check): Sync index/summary here, if we were successful. * providers/local/camel-spool-folder.c (camel_spool_folder_new): If we have filter-new-messages-on-inbox set and we just opened inbox, turn on filtering on this folder. (camel_spool_folder_construct): Keep track of changes for the folder, so that filter-new-messages works right (?) * providers/local/camel-spool-store.c (get_folder): Pass 'INBOX' as the folder name, not the path. * camel-folder-search.c (search_not): Modified patch from <peterw@ximian.com> since the summary is messageinfo's, not strings. ** Ok so the problem with the stuff below is that maildir/spool 'summary_load' throws away all events, including recents, joy eh? * providers/local/camel-maildir-summary.c (maildir_summary_check): Add new messages to the recent changeinfo. * providers/local/camel-spool-summary.c: Mark 'new' message as recent, for later processing if required (i.e. 'filter new messages'). * camel-store.c (construct): new function, cascade up construct method and check for 'filter' param, and set accordingly for any one that might want it. * providers/imap/camel-imap-store.c (construct): map the param_filter_inbox flag to the store->flags as CAMEL_STORE_FILTER_INBOX. * camel-store.h (CAMEL_STORE_FILTER_INBOX): new flag to tell it to filter inbox. * providers/imap/camel-imap-folder.h: Removed do_filtering flag from CamelImapFolder. * providers/imap/camel-imap-folder.c (imap_update_summary): Remove the 'recents' parameter, use the 'changes' parameter instead to convey this info. (camel_imap_folder_changed): Changed for update_summary api change. Now always just emit the changed event if we have any changes to report, filtering code removed, handled upstream. (filter_proc): (filter_free): Removed old filtering code. (camel_imap_folder_new): Set the filter_recent flag on the folder if we're the inbox and filtering of inbox is enabled. * camel-folder.c (folder_changed): If we have 'recent' messages, and are set to filter recents, then freeze the folder and launch a thread to do the processing (or similar if threading not enabled). (thaw): Make sure we emit the changed signal outside of owning the lock and if things have changed. Also, no longer bother downgrading folder_changed events to message_changed events. * camel-folder.h (struct _CamelFolder): Added filter_recent flag -> signifies all recent messages in folder should be filtered. * camel-session.c: (camel_session_thread_msg_new, camel_session_thread_msg_free, camel_session_thread_queue, camel_session_thread_wait): code to handle async operations as part of camel processing. (camel_session_finalise): free thread_lock, destroy thread, active hash, etc. (camel_session_init): init thread, active hash, etc. (camel_session_class_init): Init virtual functions. (session_thread_msg_new, session_thread_msg_free, session_thread_destroy, session_thread_received, session_thread_queue, session_thread_wait): default implementation of session threads stuff. 2001-09-17 <NotZed@Ximian.com> * camel-folder.c (camel_folder_change_info_recent_uid): New function to add a 'recent' uid to the change info. (camel_folder_change_info_clear): Clear recent list. (camel_folder_change_info_free): Free recent list. (camel_folder_change_info_new): Setup recent list. * camel-folder.h: Added a uid_recent item to the folder_changed event data. * providers/local/camel-maildir-store.c (scan_dir): Free new in the right block. * providers/local/camel-local-provider.c: Add local config entries to filter on new messages in spool and maildir provider. * camel-vee-folder.c (vee_folder_construct): Remove the assertion which stops ? in names from being allowed. svn path=/trunk/; revision=12956
Diffstat (limited to 'camel/camel-store.h')
-rw-r--r--camel/camel-store.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/camel-store.h b/camel/camel-store.h
index 6983524091..e86c884a1a 100644
--- a/camel/camel-store.h
+++ b/camel/camel-store.h
@@ -56,6 +56,7 @@ typedef struct _CamelFolderInfo {
/* Flags for store flags */
#define CAMEL_STORE_SUBSCRIPTIONS (1 << 0)
#define CAMEL_STORE_VTRASH (1 << 1)
+#define CAMEL_STORE_FILTER_INBOX (1 << 2)
struct _CamelStore
{
>Iain Holmes2001-05-154-64/+166 * Fix the importer linklineIain Holmes2001-05-152-0/+6 * Remove this... it's not used any more.Dan Winship2001-05-156-308/+5 * Add camel-smime-context.[c,h] and camel-smime.[c,h] to the build.Jeffrey Stedfast2001-05-156-14/+568 * Replicate the semantics of the libunicode utf8 functions by returning NULLJon Trowbridge2001-05-157-10/+36 * Validate utf8 to avoid lock-ups. (_get_position): Validate utf8 to avoidJon Trowbridge2001-05-151-6/+8 * Subclass CamelSession since we can no longer specify the passwd callbackJeffrey Stedfast2001-05-1512-89/+727 * set the subfolder's parent to NULL so the subfolder list doesn't changejacob berkman2001-05-152-1/+10 * Remove Help->About.Jeffrey Stedfast2001-05-152-2/+4 * Redo forwarding stuff so there's "Forward", "ForwardAttached",Dan Winship2001-05-152-16/+25 * Split "Other" page into three pages, Display, Composer, and PGP. Add HTMLDan Winship2001-05-1514-138/+371 * Try to deal with bad utf8. (_get_position): Try to deal with bad utf8.Jon Trowbridge2001-05-151-6/+6 * Find (in?) messageJakub Steiner2001-05-142-0/+134 * Use secondary searches here, so that we control the interference betweenJon Trowbridge2001-05-145-73/+222 * add prototype for addressbook_expand_uri.Chris Toshok2001-05-146-20/+102 * Get rid of this - we don't need it.Jeffrey Stedfast2001-05-144-7/+8 * Updates the subject on refresh and sets subject to "Untitled Message" ifDuncan Mak2001-05-143-26/+63 * er, OptionSetJeffrey Stedfast2001-05-131-1/+1 * s/SSL_Enable/SSL_SetOptionJeffrey Stedfast2001-05-131-1/+1 * my computer crashed while commiting this first time.Gediminas Paulauskas2001-05-128-6/+41 * load pixmaps for MessageCopy and MessageForwardAttached. Thanks WayneGediminas Paulauskas2001-05-121-2/+2 * spew the data passed to us. (destination_folder_handle_motion): theChris Toshok2001-05-122-1/+11 * implement the CORBA side of dragging.Chris Toshok2001-05-122-6/+94 * correct bug causing the Ok button to never be enabled.Chris Toshok2001-05-122-2/+9 * add RemoveFolder menu item and verb. (folder_context_menu_remove_cb): newChris Toshok2001-05-124-8/+51 * add this define for the xml path to use when adding menu items to theChris Toshok2001-05-123-5/+26 * example.Chris Toshok2001-05-122-3/+7 * Ask for a folder to import into.Iain Holmes2001-05-127-20/+75 * use e_card_list_get_vcard to build up the data to send.Chris Toshok2001-05-129-52/+169 * callback to use GNOME-VFS to load http data. (on_url_requested): HandleDan Winship2001-05-126-157/+303 * Decode Content-Location, either correctly or Netscape-generated-brokenly.Dan Winship2001-05-125-0/+64 * Don't check the initial auth response until we get into the while-loopJeffrey Stedfast2001-05-122-9/+20 * If the name is set and the full_name or file_as haven't been yet, setChristopher James Lahey2001-05-122-0/+23 * Make a key press stop the tooltip timeout.Christopher James Lahey2001-05-122-1/+5 * add protoJP Rosevear2001-05-126-4/+39 * Set a title on the window "Reconfigure %s" where %s is the folder name.Jeffrey Stedfast2001-05-124-46/+88 * component_new refs the object itself, so unref ours when we finish with itJP Rosevear2001-05-123-6/+11 * sanitize LD_ADDS and CFLAGS so the libtool lines are shorter (fixesMartha Burke2001-05-122-3/+6 * Reordered the includes here. (string_to_dbt): The sleepycat libdbChristopher James Lahey2001-05-124-1/+20 * only check schema support if we've connected.Chris Toshok2001-05-122-4/+10 * Don't allow multiple copies of this to be run at a time.Jeffrey Stedfast2001-05-123-23/+87 * Remove a snippet of debugging code I left in by mistake.Jon Trowbridge2001-05-122-8/+5 * Make this return CamelStream * (like the other stream new functions)Dan Winship2001-05-123-5/+10 * If the cursor_uid is NULL, then we can't forward anything so just return.Jeffrey Stedfast2001-05-122-0/+12 * Lots of people seem to have "broken" local storage hierarchies. So ignoreDan Winship2001-05-122-2/+10 * don't leak the ECard or ECardSimple.Chris Toshok2001-05-113-18/+31 * the only problematic area - pass NULL for now in as the BonoboUIContainer.Chris Toshok2001-05-1110-34/+116 * I'm an idiot.Jon Trowbridge2001-05-111-1/+0 * Use the ESearchingTokenizer to highlight search matches for folder-levelJon Trowbridge2001-05-119-9/+1082 * No, we don't want to include bonobo-running-context.h... justJon Trowbridge2001-05-112-1/+6 * plug leak (icaltime_as_timet): use altered functionsJP Roseveaer2001-05-112-58/+64 * call SSL_Enable after the SSL_ImportFD and before PR_Connect. Otherwise,Chris Toshok2001-05-112-1/+8 * Fix some compiler warnings by including the correct bonobo headers and byJeffrey Stedfast2001-05-113-23/+51 * If we are creating a message with only a single part (ie no attachmentsJeffrey Stedfast2001-05-112-5/+22 * Don't abort if the Service is NULL, this is perfectly valid for cipherJeffrey Stedfast2001-05-112-1/+5 * Make the time section workIain Holmes2001-05-112-2/+12 * Don't let the spinner be set to 0Iain Holmes2001-05-112-1/+6 * Fix a crash when Update Now is clicked.Iain Holmes2001-05-112-1/+15 * Don't advance to the next undeleted message after "Delete"...Dan Winship2001-05-114-14/+37 * add the nspr includes to the list of includes used to test for NSSChris Toshok2001-05-102-4/+15 * Pass appropriate parameters to CF_CLASS and add comment explaining why myPeter Williams2001-05-102-1/+9 * Updated Swedish translation.Christian Rose2001-05-102-468/+562 * Use a better method of elm detectionIain Holmes2001-05-102-50/+120 * New file, started by Ettore, finished by me, to implement theDan Winship2001-05-109-4/+453 * Set the disconnected status. (camel_disco_store_can_work_offline): ReturnDan Winship2001-05-1010-10/+308 * remove something jeff didn't mean to commitDan Winship2001-05-101-1/+1 * Don't wrap content-id with brackets here as it is now done internally inJeffrey Stedfast2001-05-102-5/+8 * switch on the correct widget and mapJP Rosevear2001-05-102-1/+17 * Wrap the content-id with <>'s.Jeffrey Stedfast2001-05-103-3/+17 * Show the date for dates in the future.Christopher James Lahey2001-05-103-34/+52 * Added .cvsignore.Christopher James Lahey2001-05-102-0/+23 * Include bonobo-context.h.Christopher James Lahey2001-05-104-24/+54 * Made this function static. Removed the unused variable placeholder.Christopher James Lahey2001-05-102-3/+10 * Made a const char * here.Christopher James Lahey2001-05-102-1/+7 * Kill the RDF Summary as well.Iain Holmes2001-05-102-0/+7 * OpenSSL LDFLAGS also needs to include -lcryptJeffrey Stedfast2001-05-102-2/+8 * Remove get_physical_path and load_folders, and replace the calls to themDan Winship2001-05-102-178/+34 * Rename "port" to "type" here too.Dan Winship2001-05-102-1/+6 * Remove the nonexistant filesIain Holmes2001-05-091-4/+1 * Moved all references for the Mail.h and Bonobo stuff into the .c fileIain Holmes2001-05-093-18/+18 * Importer changesIain Holmes2001-05-0937-1553/+3193 * Walk a hierarchy using the "/subfolders/" convention and call a callbackDan Winship2001-05-093-2/+106 * free the alarm component if it doesn't have a parent, rather than if itJP Rosevear2001-05-093-5/+15 * unref the property bag when we finish with itJP Rosevear2001-05-094-2/+6 * Convert the Subject header to HTML and also make sure that the Subject,Jeffrey Stedfast2001-05-092-8/+22 * Free the UIDs if the user decides to not go through with editing all theJeffrey Stedfast2001-05-092-5/+40 * Updated russian translation.Valek Frob2001-05-082-1290/+1497 * Updated Finnish translation.jjranta2001-05-082-423/+481 * Bumped check for gal to 0.7.99.3.Christopher James Lahey2001-05-082-1/+5 * Removed e-card-pairs.h since we're not using it.Christopher James Lahey2001-05-0821-656/+1379 * Added util/e-sorter-array.lo and widgets/e-reflow-model.lo. RemovedChristopher James Lahey2001-05-088-421/+1564 * Deleted Gediminas patch.Not Zed2001-05-081-0/+4 * Reverted Gediminas patch.Not Zed2001-05-081-0/+4 * Removed EVOLUTION_VERSION from the rest of makefiles. use VERSION instead. SoGediminas Paulauskas2001-05-086-8/+9 * Fix for #2253 (search names not translated), mail-search i18n fixes.Gediminas Paulauskas2001-05-0811-23/+88 * Request an update if just our line widths needed recalculation. This fixesFederico Mena Quintero2001-05-082-1/+3 * flesh out the function more. It should work now, but there's no way toChris Toshok2001-05-082-4/+79 * Convert to bonobo xobjectJP Rosevear2001-05-085-495/+224 * Fix a free of non-malloc'ed memory introduced by my last change.Dan Winship2001-05-082-2/+5 * ShushJP Rosevear2001-05-089-15/+31 * Use a different error message in the ldap support/no ldap support/fileChris Toshok2001-05-082-22/+43 * Added command entry for 'ToggleOffline'.Jon Trowbridge2001-05-084-2/+14 * undef HAVE_SSL and HAVE_OPENSSLJeffrey Stedfast2001-05-083-2/+77 * Add support for using OpenSSL.Jeffrey Stedfast2001-05-087-30/+109 * s/HAVE_NSS/HAVE_SSL for the SSL checkbox stuff.Jeffrey Stedfast2001-05-082-2/+7 * (Fix bug #53111: Portability fixes for HP's ANSI compiler.)Jason Leach2001-05-083-6/+12 * Connect to key_press_event on the GtkHTML widget. (etree_key): Only handleDan Winship2001-05-083-34/+63 * use define from widgets/misc/e-filter-bar.h instead of own enumeration andGediminas Paulauskas2001-05-088-71/+73 * write what was converted to console, this function does not work always.Gediminas Paulauskas2001-05-082-5/+11 * updted Azeri filePablo Saratxaga2001-05-071-286/+257 * I am sure at least with this:Gediminas Paulauskas2001-05-072-3/+17 * Fix another build problem. (Um, anyone else could have done this...)Dan Winship2001-05-062-1/+5 * upped required gtkhtml version to 0.9.3, even that is not enough for idlGediminas Paulauskas2001-05-063-8/+17 * Evolution has got so many strings............. how many? 1895Gediminas Paulauskas2001-05-052-2425/+3247 * no need of -DEVOLUTION_VERSIONGediminas Paulauskas2001-05-057-6/+24 * Updated Spanish translation.Hector Garcia2001-05-052-1127/+1302 * un-#if 0 this. (xfer_folder): add skeleton code to validate xfer request.Chris Toshok2001-05-052-12/+86 * take a physical_uri and pass it to the callback.Chris Toshok2001-05-055-4/+31 * Rename `WorkOffline' to `ToggleOffline' as needed by the new offlineEttore Perazzoli2001-05-052-1/+5 * Use type instead of portNumber.Dan Winship2001-05-053-5/+16 * Remove a line of code that caused the offline confirmation dialog toEttore Perazzoli2001-05-052-3/+7 * Undo a broken leak fix.Ettore Perazzoli2001-05-052-2/+5 * correct type where same pixmap mask was unreffed twiceJP Rosevear2001-05-052-1/+7 * init change_id to NULLJP Rosevear2001-05-042-1/+7 * Plug more leaks.Ettore Perazzoli2001-05-044-2/+24 * unref the calcomponent when we're done with itJP Rosevear2001-05-043-8/+22 * Plug a leak in the folder creation dialog (a string was beingEttore Perazzoli2001-05-042-1/+6 * Plug a leak (the return value from `oaf_query()' must be freed!).Ettore Perazzoli2001-05-042-0/+7 * Fix up refcounting on current_folder.Dan Winship2001-05-044-4/+14 * Change `e_shell_get_icon_path()' to only look up the Evolution imageEttore Perazzoli2001-05-042-8/+10 * Change the mode for the GtkCList in the active connection dialog to beEttore Perazzoli2001-05-042-1/+6 * Complete the shell side for supporting off-line operations, gettingEttore Perazzoli2001-05-044-21/+120 * Initial implementation for the "warning, some connections are stillEttore Perazzoli2001-05-048-22/+537 * #include <camel/camel-file-utils.h>Dan Winship2001-05-045-8/+25 * new abstract class for disconnectable remote storesDan Winship2001-05-0414-536/+1174 * signature editing fixesRadek Doulik2001-05-044-21/+77 * Rename `WorkOffLine' into `WorkOffline'.Ettore Perazzoli2001-05-032-1/+5 * Updated German translationMatthias Warkus2001-05-032-1122/+1279 * Make the `EShellOfflineHandler' object non-floating in the constructEttore Perazzoli2001-05-032-0/+7 * Add interfaces to the shell to handle off-line operation, as well as aEttore Perazzoli2001-05-0310-1/+955 * new file.Chris Toshok2001-05-034-0/+581 * I commited patches to mail and calendar summary which relied on this, but forgotGediminas Paulauskas2001-05-032-0/+7 * Found out that I forgot to commit this.Gediminas Paulauskas2001-05-032-4/+7 * Clean this up a bit. Add a "tag_prefix" member. Move "useful_lsub" intoDan Winship2001-05-034-18/+31 * unref the book if the view is being destroyedJP Rosevear2001-05-031-0/+2 * unref the book if the view is being destroyedJP Rosevear2001-05-033-0/+23 * initialize "continuation_line" to 0JP Rosevear2001-05-032-0/+6 * Updated Slovenian translationAndraz Tori2001-05-031-1913/+2507 * Fix this up... it was losing count in some cases and giving a more verboseDan Winship2001-05-032-14/+12 * Rescue the KPOP code from bit rot.Dan Winship2001-05-022-23/+21 * Updated Azeri file Enabled Dutch headerPablo Saratxaga2001-05-023-6754/+5023 * Remove the last argument from camel_session_alert_user.Anders Carlsson2001-05-021-1/+1 * Redo command locking. Since command_lock is recursive, we can just get aDan Winship2001-05-027-197/+234 * Debugging routine. (Only works for recursive mutexes right now.)Dan Winship2001-05-023-0/+12 * Don't use g_utf8_next_char on text that isn't valid UTF8, since it won'tDan Winship2001-05-022-3/+11 * remove unused assignment that calls non-existent function.Dan Winship2001-05-011-2/+0 * Support the IMAP UIDPLUS extension (RFC 2359), which lets youDan Winship2001-05-016-73/+469 * if the view does not contain a search context, the result is by defaultJP Rosevear2001-05-012-0/+10 * Mockups of the inline send and receiving mail dialog; including one using ico...Anna Dirks2001-05-011-0/+534 * New-and-improved version of get_uid_set() from camel-imap-folder.c. LooksDan Winship2001-05-014-38/+89 * only remove event handlers if we set them up originally, to avoidDan Winship2001-04-301-4/+11 * Unhook event handlers before syncing the folder, since the folder browserDan Winship2001-04-302-1/+15 * Made fewer calls to functions like split_into_lines to save time whenChristopher James Lahey2001-04-301-86/+53 * Make this smarter. Now e_text_to_html_full calls it when it sees a '@',Dan Winship2001-04-302-62/+61 * Mojo this a bit so that "\n\n>" gets translated to "<br><blockquote>"Dan Winship2001-04-302-8/+23 * Updated Swedish translation.Christian Rose2001-04-292-80/+84 * Added widgets/e-categories-master-list-dialog-model.lo andChristopher James Lahey2001-04-291-3/+25 * Added a read only argument "model" to ETable.Christopher James Lahey2001-04-291-1/+10 * Updated Finnish translationjjranta2001-04-292-1211/+1408 * (Make the alternating row colors a option in ETableSpecification insteadJason Leach2001-04-2911-17/+67 * Reflect Danw's move of mail/session.c to mail/mail-session.cPeter Williams2001-04-292-1/+6 * Updated Ukrainian transaltionYuri Syrota2001-04-281-1096/+1159 * Renamed from session.c and made to be a subclass of CamelSession.Dan Winship2001-04-285-226/+254 * Redo this a lot so that instead of having a class full of callbacks, weDan Winship2001-04-2810-244/+361 * remove hardcoded values (edit_attendee): ditto, and there are only 4 rolesJP Rosevear2001-04-284-27/+38 * add e-completion-testDan Winship2001-04-281-0/+1 * Updated Swedish translation.Christian Rose2001-04-272-122/+135 * use enums not hard code valuesJP Rosevear2001-04-273-2/+6 * icalparameter_new_rsvp now takes an enumJP Rosevear2001-04-272-1/+6 * the value type should be inited with ICAL_VALUE_* rather than ICAL_*_VALUEJP Rosevear2001-04-272-3/+9 * No need to camel_shutdown() anymore...Jeffrey Stedfast2001-04-272-2/+2 * Automagically call camel_shutdown() atexit() ;-) (camel_init): AlsoJeffrey Stedfast2001-04-273-16/+25 * helps to spell right ;-)Jeffrey Stedfast2001-04-271-1/+1 * Added Next/Previous toolbar buttons.Jeffrey Stedfast2001-04-272-1/+20 * Replace "<" by "<=" in the comparison for due dates against the currentFederico Mena Quintero2001-04-273-3/+17 * Don't filter on Seen status. (previous_msg): Same. (next_unread_msg): NewJeffrey Stedfast2001-04-273-2/+30 * Set the default size of the dialog to 600x400, which seems to be a niceJeffrey Stedfast2001-04-272-2/+12 * Updated to use camel-file-util routines. (hide_save_1): Same.Jeffrey Stedfast2001-04-272-17/+31 * Merge fix from the 0.10 branch:Ettore Perazzoli2001-04-272-1/+6 * Merge build fix from the branch:Ettore Perazzoli2001-04-272-0/+5 * Updated Swedish translation again.Christian Rose2001-04-272-138/+150 * Make the Solaris and no-gethostbyname_r implementations behave more likeDan Winship2001-04-272-4/+24 * #include <sys/types.h> for off_t.Jeffrey Stedfast2001-04-272-0/+5 * #include "nss.h" rather than <nss.h> due to the non-mozilla nss.h file living...Jeffrey Stedfast2001-04-271-2/+3 * Check for gethostbyname_r so e_gethostbyname_r will DTRT.Dan Winship2001-04-272-1/+5 * New file, with the int, string, time_t, and off_t encode/decode routinesDan Winship2001-04-279-363/+447 * this shouldn't have been here (at least not containing ".deps")Dan Winship2001-04-271-1/+0 * Remove UNICODE_LIBSDan Winship2001-04-273-2/+7 * Remove UNICODE_CFLAGS (libeutil_la_LIBADD): Change UNICODE_LIBS toDan Winship2001-04-272-2/+6 * We no longer depend on libunicode.Dan Winship2001-04-273-21/+19 * Remove UNICODE_CFLAGS (and some other stuff that's redundant withDan Winship2001-04-2713-103/+83 * Add GAL_LIBS for gunicode stuff (until glib 2.0) (INCLUDES): UseDan Winship2001-04-276-736/+35 * Use e_gethostbyname_r. (camel_service_gethost): Remove unused var.Dan Winship2001-04-272-9/+8 * Remove UNICODE_CFLAGSDan Winship2001-04-266-4/+10 * Use <font color=...> to mark citations rather than italicizing them, whichDan Winship2001-04-262-4/+17 * UpdateKjartan Maraas2001-04-262-0/+2 * Update this a bitKjartan Maraas2001-04-262-12/+12 * Updated Ukrainian transaltionYuri Syrota2001-04-261-56/+35 * Updated Ukrainian transaltionYuri Syrota2001-04-261-45/+19 * Updated Ukrainian transaltionYuri Syrota2001-04-261-132/+69 * Added "MessageSearch" verb.Jon Trowbridge2001-04-269-2/+348 * Updated Ukrainian transaltionYuri Syrota2001-04-261-85/+50 * Updated Swedish translation.Christian Rose2001-04-262-713/+860 * Blah blah fix for xml1 broken utf8 encoding, and use "g" memory for allNot Zed2001-04-262-16/+36 * Applied jacob's patches for e-poolv stuff.Not Zed2001-04-267-67/+122 * Modified to match e_strv_get behaviour. Assert on bad cases, and return ""Not Zed2001-04-263-6/+362 * Removed generated files from CVS, updated .cvsignore files to includeJon Trowbridge2001-04-26