[Evolution] Jumping emails
Got two "jumping" issues that I'm trying to solve in Evolution 2.6.1 First, in the pane showing the message list for a folder: I have my list sorted with the newest emails on the bottom. If I get a new email, and I click on a message line in that list, the list suddenly jumps to the top of the list, or at least far enough so that the selected email is the bottom line of the view. This is mildly annoying. In the message view window, or in the message preview pane: Whenever I get an html email with images, the view jumps to the bottom of the message each time it retrieves, or attempts to retrieve, an image. This is very annoying. I don't know what causes it. I know that if I log-out, delete all temporary files, reboot, and then login, it works normally... for a while, maybe even days... well, usually (sometimes it still doesn't fix it). Then suddenly it will start happening again. Once in a great while, it will do the auto jump to the end of a text message also - which turns into a persistent state, also... but that is very rare. Any ideas of what could possibly cause this behavior? Lonnie Borntreger ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] [Fwd: Re: Export Contacts]
On Mon, 2006-07-17 at 12:07 +0100, Sean Coughlan wrote: > Hi There, > > You should be able to export your evolution address book as a CSV file > with the following: > > evolution-addressbook-export --format=csv > contacts.csv > > Also, if you want to do something a little more complicated and have > or know someone that with basic Java it might be worth checking out > the following: > > http://www.thecentric.com/wiki/index.php/Libeds-java Now that's really useful, thanks. But how could I have known that if you'd not told me? OK ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Jumping emails
Hi Lonnie, > Once in a great while, it will do the auto jump to the end of a text > message also - which turns into a persistent state, also... but that is > very rare. > > Any ideas of what could possibly cause this behavior? I've occasionally seen this behavior in email messages and sometimes messages lists when caret mode is on (F7). Try seeing if that is on. When disabled, I never see the "jumping". --chris > > Lonnie Borntreger > > > ___ > Evolution-list mailing list > Evolution-list@gnome.org > http://mail.gnome.org/mailman/listinfo/evolution-list ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] double spacing in html emails?
Hi all, I've noticed this on and off since maybe v2.2, but it seems to be getting worse lately. When I get HTML emails from Windows users (I think they are mostly using Outlook), they appear double-spaced between paragraphs in evolution. I fired up Outlook and they view fine in Outlook and Thunderbird. Also, I know this has been brought up before, but the text is also way smaller than other emails. I've updated gtkhtml, pango, and evolution/e-d-s and still see no change. Any suggestions, known issue? --chris ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Jumping emails
hi, Am Dienstag, den 18.07.2006, 00:48 -0700 schrieb Lonnie Borntreger: > In the message view window, or in the message preview pane: Whenever I > get an html email with images, the view jumps to the bottom of the > message each time it retrieves, or attempts to retrieve, an image. This > is very annoying. sounds like http://bugzilla.gnome.org/show_bug.cgi?id=307005 cheers, andre -- mailto:[EMAIL PROTECTED] | failed! http://www.iomc.de signature.asc Description: Dies ist ein digital signierter Nachrichtenteil ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Macros?
The place where I work has general spam filtering for every e-mail that comes in. They also have an account where you can send Spam that gets through, to train the filter. So, when I get a spam, I have to: A.) Ask Evolution to forward the message as an attachment B.) Fill in the spam learning address C.) Remove my address from the Bcc (which I have on there by default) D.) Send the new message E.) Delete the original spam message. Is there any way to automate these tasks and and assign them to a keyboard shortcut and/or button? Thanks, -Ken -- Kenneth Swanson <[EMAIL PROTECTED]> ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Display other mailer icons in header
Hi list, I created a simple hack to display other mailers (Thunderbird, Apple Mail, KMail, Outlook, Outlook Express, Opera) icon in mail header, currently evolution only displays monkey icon when the mailer is evolution. I created this patch just for fun and I thought I share it with you guys. The patch is against evolution 2.62. Put the icons on evolution share folder (mine is /usr/share/evolution/2.6/images). Have fun. -- Arif Lukito --- mail/em-format-html.c.orig 2006-07-13 09:22:58.0 +1000 +++ mail/em-format-html.c 2006-07-13 09:36:18.0 +1000 @@ -1662,6 +1662,11 @@ g_free(value); } +static char *mail_icons[] = { + "monkey-16.png", "thunderbird-16.png", "oexpress-16.png", "outlook-16.png", + "applemail-16.png", "kmail-16.png", "opera-16.png" +}; + static void efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part) { @@ -1671,6 +1676,7 @@ CamelContentType *ct; struct _camel_header_raw *header; int rupert = FALSE; + int icon_index = -1; ct = camel_mime_part_get_content_type((CamelMimePart *)part); charset = camel_content_type_param (ct, "charset"); @@ -1710,7 +1716,14 @@ mailer_shown = TRUE; efh_format_header (emf, stream, part, &xmailer, h->flags, charset); - if (strstr(header->value, "Evolution")) + if (strstr(header->value, "Evolution")) icon_index = 0; + else if (strstr(header->value, "Thunderbird")) icon_index = 1; + else if (strstr(header->value, "Outlook Express")) icon_index =2; + else if (strstr(header->value, "Outlook")) icon_index = 3; + else if (strstr(header->value, "Apple")) icon_index = 4; + else if (strstr(header->value, "KMail")) icon_index = 5; + else if (strstr(header->value, "Opera")) icon_index = 6; + if (icon_index != -1) rupert = TRUE; } else if (!g_ascii_strcasecmp (header->name, h->name)) { efh_format_header(emf, stream, part, header, h->flags, charset); @@ -1733,7 +1746,7 @@ camel_stream_printf(stream, "", classid); pngfile = g_build_filename (EVOLUTION_ICONSDIR, - "monkey-16.png", + mail_icons[icon_index], NULL); iconpart = em_format_html_file_part((EMFormatHTML *)emf, "image/png", pngfile); g_free (pngfile); mailicons.tar.bz2 Description: application/bzip-compressed-tar ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Display other mailer icons in header
hi arif, Am Mittwoch, den 19.07.2006, 03:10 +1000 schrieb Arif Lukito: > I created a simple hack to display other mailers (Thunderbird, Apple > Mail, KMail, Outlook, Outlook Express, Opera) icon in mail header, > currently evolution only displays monkey icon when the mailer is > evolution. I created this patch just for fun and I thought I share it > with you guys. The patch is against evolution 2.62. Put the icons on > evolution share folder (mine is /usr/share/evolution/2.6/images). Have > fun. cool, would fix http://bugzilla.gnome.org/show_bug.cgi?id=267262 :-) no idea though if it could be included due to license issues... cheers, andre signature.asc Description: Dies ist ein digital signierter Nachrichtenteil ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Date received wierdness
the Date: header is the date the messages were sent, not received. the IMAP server's INTERNALDATE value is what is used to show date received. On Tue, 2006-07-18 at 15:51 -0400, Patrick O'Callaghan wrote: > I had a problem with a filter which moved a bunch of mail from INBOX to > the wrong folder. I moved it all back manually, but now the "Received" > column for each of these messages in the folder view shows the time I > moved then back, even though they were actually received over a period > of months. All folders are on a Cyrus IMAP server. > > Furthermore, the message date headers (as seen with Ctrl-U) have not > changed and still show the original (and correct) values. > > What gives? > > poc > > ___ > Evolution-list mailing list > Evolution-list@gnome.org > http://mail.gnome.org/mailman/listinfo/evolution-list -- Jeffrey Stedfast Evolution Hacker - Novell, Inc. [EMAIL PROTECTED] - www.novell.com ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
[Evolution] Date received wierdness
I had a problem with a filter which moved a bunch of mail from INBOX to the wrong folder. I moved it all back manually, but now the "Received" column for each of these messages in the folder view shows the time I moved then back, even though they were actually received over a period of months. All folders are on a Cyrus IMAP server. Furthermore, the message date headers (as seen with Ctrl-U) have not changed and still show the original (and correct) values. What gives? poc ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Jumping emails
On Tue, 2006-07-18 at 17:15 +0200, Andre Klapper wrote: > hi, > > Am Dienstag, den 18.07.2006, 00:48 -0700 schrieb Lonnie Borntreger: > > In the message view window, or in the message preview pane: Whenever I > > get an html email with images, the view jumps to the bottom of the > > message each time it retrieves, or attempts to retrieve, an image. This > > is very annoying. > > sounds like http://bugzilla.gnome.org/show_bug.cgi?id=307005 Yep. Sounds related, but the emails I have trouble with don't have an animated image. Turning off the caret mode like Chris suggested (which I don't ever remember turning on) seems to have solved this problem. Lonnie ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list