Anti Virus Programs

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Friday, 6 September 2013

Expand your filter use

Posted on 21:35 by Unknown
Filters are one of those things, we all expect the mail client has them, and mostly they are used for really mundane tasks like a block list.  But filters have many many uses and if you understand the process, you can probably think of a new use often.

But before talking about filters, there is the issue of when and where they will work.  The default out of the box arrangement for Thunderbird is they work on the inbox of a single mail account. As discussed below, that can be expanded for IMAP accounts and with the use of the Send Filter add-on you can run filters on mail as you send it.

If you have an IMAP mail account the filter will only run on the inbox. The functionality to enable filters to run on all sub folders has been around since Thunderbird version 3, but they never got around to placing a setting in the user interface to set it up, so you need to do it manually.

In Thunderbird select options from the tools menu. Then select the Advanced tab and finally on the General sub tab select the config editor button.  Promise to be careful

In the list of settings, right click and select New and then string from the fly out menu


in the enter preference name dialog, place the following text and click Ok
mail.server.default.applyIncomingFilters 
The next dialog asks for a value for mail.server.default.applyIncomingFilters. Enter the value
True  
and click Ok

Note: These settings are case sensitive, so be sure to copy them exactly, including the camel case.


Now all your filters on IMAP mail accounts will run against all folders. This is a good thing if you want to say auto archive mail based on age.  It is a bad thing if you want to move mail from the inbox to somewhere else..  Enter the filtaQuila add-on.  This add-on, among it's list of features makes it possible to include the folder name in Filters,  so a filter that used to move mail from snoopy@charliebrown.org to the folder snoopy  now needs a folder name in the mix, either as if folder is not "name" so the filter will run on all folders but the destination, or folder is "name" so the filter only works on that folder.


 
Read More
Posted in | No comments

Sunday, 14 July 2013

Date and Time in mail lists.

Posted on 20:52 by Unknown
The dates and times used by Email are UTC.  This means that for Thunderbird to set up the correct date and time on emails your operating system must be set to the correct timezone and daylight saving settings.

Simply because the little clock on the bottom right of your screen shows the correct time does not mean your time zone is correctly set.

Instructions for changing the timezone are;

XP    Vista Windows 7 and Windows 8  OSX

Thunderbird has only ever displayed the time on messages for today.  The logic involved is fairly simple.  It makes todays messages easier to identify in the list, and you don't need to be shown todays date as you already know it.

If for some reason your feel you must have a date MozillaZine have detailed instructions on overriding date and time formats in Thunderbird.

Read More
Posted in | No comments

Monday, 15 April 2013

Images do not display.

Posted on 20:21 by Unknown
Sometime the remote images in an email do not display  This could be due to the permissions.default.image hidden preference in Thunderbird. If you never see the allow images button on emails from senders not in your address book this setting is the probable cause of the images and the button not appearing.

As I understand this preference, it blocks remote images. 2 blocks everything 1 allows images from the original server, 0 allows images from any server. With 1 being the Thunderbird default.

Go to Tools menu > options > advanced > config editor

Type into the search box permissions.default.image or as much as you need to double click on it in the list below.

When changing this setting, it is advisable to reduce the setting to it's current value -1 as each reduction in values is a reduction in security as well as an increase in convenience.
Read More
Posted in | No comments

Saturday, 6 April 2013

The RETR command did not succeed. Thank ATT and YAHOO for the need for this post

Posted on 16:28 by Unknown
This post is about the "conversation" that occurs between a mail client and the mail server when the client is downloading mail using POP3

Because email is one of the early developments of the internet, everything about the connection and download of mails is done in plain text in the English language.  So much so that you can log into a mail server and get you mail by typing text commands in response to text prompts from the server

But we are not going there. If that is your interest there is an article here that discusses how to use Telnet to connect to the POP3 server.

I am concentrating on only Three of those POP commands STAT, LIST and RETR.

STAT is the command issued to the server to ask if there is mail to download.  The server replies with a message that looks like

+OK nn mm
where nn is number of messages and 
mm is the total size of those messages. 
 

LIST is the command that follows and is designed to get the server to provide more information about the messages it is holding.  So when your mail client issues the list command to the server it get a reply that looks something like this.

            
Thunderbird: LIST
Server: +OK 2 messages (320 octets)
Server: 1 120
Server: 2 200
Server: .
 
In this example there are 2 messages available  
The important information for the mail client such as Thunderbird is that the server has allocated the messages a number (in the examples case 1 and 2) that proceeds the message size information.

This allows for the Third command, RETR.  Using the information obtained in the proceeding LIST the mail client can now proceed to ask the mail server for the message.  This is done using the RETR command and the message number.  This command is issued once for each message to initiate a download of that message and looks something like this.

             Thunderbird: RETR 1
Server: +OK 120 octets
Server: <the POP3 server sends the entire message here>
Server: .


As you can see, for the RETR command to fail, there basically has to be a problem on the server as the mail client (Thunderbird) is only asking the server to provide that which it has already said is available.

Further information can be found in RFC 1939 which is the standard that all POP3 compliant mail server and clients must comply with
Read More
Posted in | No comments

Thursday, 14 March 2013

Importing CSV files

Posted on 17:13 by Unknown
Now this post is very much driven by the fact that there are still plenty of major players in the email world that have never grasped the more advanced methods of exchanging address information and we are continually relying on that old nugget CSV.

It is fine for those that have been using computers for 20 years or more, we used to exchange data between dBase and just about everything else, so CSV is no stranger.  To those that have grown up in the point and click world of Microsoft Windows on the various Mac operating systems, anything that can not be done with a Mouse is foreign territory.

Enter Comma Seperated Values (CSV), a true "blast from the past" having a history that goes back into the 1960s, long before Apple had a computer and well before the mouse was even an idea. CSV is unfortunately a term used to describe a collection of data formats, about the only thing they have in common is that between each pierce of information there is a comma and the information is in "text".


Because there is so much difference between what is called CSV between the programs that generate is (some put text inside double quotes, "This This", others do not. It becomes important to actually have a bit of a visual at the data in the to get some idea of how the data is laid out.  It is to this end that you will often see a recommendation to open the file in a spread sheet application.

The actual data stored in the file looks something like this

 First Name,Last Name,Email Address,Home Phone,Mobile Phone,Business Phone
Willian,Gates,bill@microsoft.com,,,
Rob Roy,mcgregor,rob@mcgregor.com,,,

Developers of Spreadsheet applications have spent many years developing sophisticated import wizards for CSV files so you can tweak the import using options to make the data look like it is in columns under headings.  Ultimately this process results in a "more standardised" data format and your CSV file opening in your spreadsheet looking like a table.


This data layout is generated by Windows Live.  Thunderbird expects there to be a first and last name, but it also expects a display name but Live simply does not include this, so we have to massage the data supplied by windows Live to make things work.  Having the data in LibreOffice it is a fairly simple process to add a column for the display name.  But first things first. You need to save the document as an ODF file, as Libre is stubborn about what you can and can not do with a CSV file.

Right clicking on the letters and the top displayed a menu and you select insert columns from it.

I do this twice, and create two columns on as a temporary display name and the other as the final display name.

Now to get the display name data.  Obviously the information we want is in the first two columns, so we need to include the information from both of these columns into on. ie Concatenate the data.

To do this we use a formula.
 


For those not used to formulas, once it is entered the first time, you can use the little black square on the bottom right to drag the formula down the list to the end.  What we have now is a formula generated display name, but the cell contains a formula and displays what we want.

The next step is to copy and paste the information from the temp column to the final "Display Name"  when you paste, use the paste special and change the options so all you paste is text.

Now we should have  the Diusplay name in two columns, so right click the Temp Display name column and delete it. so things end up looking like those shown in the image below.

Now  File menu, select "save as" and select the file type of CSV. 
Thunderbird will not do anything but choke if you forget this step.

PostScript
For those using LibreOffice, it automatically changes formulas to the display value when you save as a CSV file. I have no idea is this is the case with other spreadsheet programs.  Needless to say you can skip the copy and paste text part if you are using Libre office, just name the column to "Display Name" in the first place and only create one now column.  For myself, I will continue the two column approach because that way I can see and be sure, I am not relying on the computer program to get it right for me.
Read More
Posted in | No comments

Friday, 17 August 2012

Compacting Data loss.

Posted on 23:03 by Unknown
Data loss through the compact process has become the number one support request, so something is wrong.

The release of Thunderbird 16 should have fixed most of these issues.  Please post a support request on the get satisfaction support site if your still experiencing these sorts of issues,
 https://getsatisfaction.com/mozilla_messaging

Please be sure to try right clicking the folder selecting properties and then repairing it. (not this only repair the index,  If real data loss has occurred it can do nothing) Lots of information about how and what is always good.  Steps to reproduce a problem get it fixed far faster that those issues where magic is involved.



Unfortunately no one knows what it is that is wrong, or really when it 'became' a problem.  I have posted in the past about compacting and stated that data loss does not occur at the time of compacting, at the moment I feel that is not the case.  I may also have been in error then as well.

I am making no claims that I can fix your problem, or that your data can be restored, on the contrary, recent cases of data loss do appear to be permanent.  The usual options of changing the entry on the View menu for folder to ALL does not work and neither does right clicking the folder, selecting properties and then the repair button. I do however encourage everyone to try them.  At this point my desire is to try and establish some sort of base line that can be used to determine the cause.

Is there a fundamental bug in the compact process?  If there is, it is well hidden.  Millions of people have no problem, but an unfortunate few not only see this problem, but in some cases see it repeatedly.  This leads me to believe, rightly or wrongly that there is a secondary issue required or more than one that makes the circle complete and result in the problem.   Thus we need to start looking for similarities between users who have the problem, and we get to the whole point of this post, to ask people to provide information.

I have no idea if this will be useful, but your co operation is appreciated.

Read More
Posted in | No comments

Thursday, 28 June 2012

Thunderbird and CCleaner or my settings will not stick.

Posted on 16:39 by Unknown
for quite some time I have observed people complaining in support forums that they are unable to get the preview pane in Thunderbird to stay turned off.

I have also seen complaints that other changes to the layout of the folders and other elements of Thunderbird such as setting the folder view to something other than the default will not stick.

Recently I have learned that this action is not accidental, nor is it the result of a bug or some weird interaction between unrelated software.  It is deliberate 

Enter CCleaner

The people over at CCleaner appear to think that Thunderbird is a browser.  They also think that they are preserving your privacy be deleting the Session.json file from your profile after Thunderbird closes and you guessed it.  The file is used to store settings about what elements of the user interface is visible, or which type of folder fview you have selected.  Or even what headings appear on your message list.

The cure is also self evident once you know what is going on.  Complain most bitterly to the people at CCleaner who have caused you inconvenience and turn the silly option off.

Fortunately this is fairly simple and straight forward, just deselect session under the Thunderbird entry in CCleaner.

Read More
Posted in | No comments
Older Posts Home
Subscribe to: Comments (Atom)

Popular Posts

  • Mail Merge
    Mail merge is one of those things that we would all like to do from time to time, send a personalized email to a list.  Most people are fami...
  • Thunderbird and CCleaner or my settings will not stick.
    for quite some time I have observed people complaining in support forums that they are unable to get the preview pane in Thunderbird to stay...
  • Importing CSV files
    Now this post is very much driven by the fact that there are still plenty of major players in the email world that have never grasped the mo...
  • Changes and addons in Version 3 to make it more like Version 2
    There are a number of changes that can be made to the look and feel of Thunderbird Version 3.x.x that make it more like the version 2 ...
  • A little about how email Clients get Email from the server
    I am writing this because there appears to be considerable misunderstanding about just how the process works. I see in support forums comme...
  • Date and Time in mail lists.
    The dates and times used by Email are UTC .  This means that for Thunderbird to set up the correct date and time on emails your operating sy...
  • Images do not display.
    Sometime the remote images in an email do not display  This could be due to the permissions.default.image hidden preference in Thunderbird....
  • The RETR command did not succeed. Thank ATT and YAHOO for the need for this post
    This post is about the "conversation" that occurs between a mail client and the mail server when the client is downloading mail us...
  • Windows Hibernation :- Should be Windows accessory to lose your data and crash your applications.
    Poking around support forums has made one thing abundantly clear. Windows hibernation is really a disaster! It is the cause of most problem...
  • I want an old version of Thunderbird
    I don't know how many times I have read this, but for some reason most people go looking at download sites for something that Mozilla ha...

Categories

  • Hotmail Live Alias Thunderbird

Blog Archive

  • ▼  2013 (5)
    • ▼  September (1)
      • Expand your filter use
    • ►  July (1)
    • ►  April (2)
    • ►  March (1)
  • ►  2012 (12)
    • ►  August (1)
    • ►  June (1)
    • ►  March (2)
    • ►  February (8)
  • ►  2011 (24)
    • ►  November (1)
    • ►  October (3)
    • ►  August (3)
    • ►  July (10)
    • ►  June (1)
    • ►  April (5)
    • ►  March (1)
  • ►  2010 (10)
    • ►  October (5)
    • ►  August (5)
Powered by Blogger.

About Me

Unknown
View my complete profile