pantz.org banner
Setting up a Thunderbird Movemail account
Posted on 05-16-2008 20:23:10 UTC | Updated on 05-16-2008 21:06:56 UTC
Section: /software/thunderbird/ | Permanent Link

This will show you how to configure a Movemail account in Thunderbird. The setup works by using Fetchmail to grab the email from remote mailboxes and giving it to Procmail to put into a local file on the users system. Thunderbird will then grab (move) the mail from the file to the users home dir under the .thunderbird dir.

Why do this? Well, if you have a bad connection to an IMAP server that goes up and down all the time along with other POP and IMAP accounts this pulls in all your mail from all your accounts and keeps it locally. If you have ever used Thunderbird with IMAP connecting over a bad network (lot's of packet loss) then you will appreciate this. You can only crank the timeout to the server up or down. You can not turn it off. The box that pops up every time it can not connect is an annoyance. Using the stop button is the only way to kill the connect. This install was done using CentOS 4.

First make sure Procmail and Fetchmail are installed on the machine. If it's a machine with a rpm package manager then try the following to see if they are installed.

rpm -qa |grep fetchmail
rpm -qa |grep procmail

If nothing shows up for one or the other install them. On a CentOS machine with yum installed just execute the following. Use sudo with the commands below if need be.

yum install fetchmail
yum install procmail

It's assumed Thunderbird is installed already. Lets configure Fetchmail first. Put the following configuration file in the your home dir and call it .fetchmailrc. Then chmod the .fetchmailrc file you just made to 0710 (chmod 0710 .fetchmailrc).

set daemon 240
set logfile /home/local_login_name/fetchmail.log

poll pop3.domain.com proto POP3
user "pop3_username" pass "pop3_password" is "local_login_name"
ssl
fetchall
no keep
no rewrite
mda "/usr/bin/procmail -d %T";

poll imap.domain.com proto IMAP
user "imap_username" pass "imap_password" is "local_login_name"
ssl
fetchall
no keep
no rewrite
mda "/usr/bin/procmail -d %T";

"set daemon 240" sets Fetchmail to get mail every 240 secs. "set logfile" is where the logfile will go (take it out if you don't want a logfile). The "poll" line is for the mail server and protocol info. The "user" entry is the users username on the mail server. The "pass" entry is their password on the server. The "is" line is the login name you use on that linux/unix workstation. Both connections use SSL to get the mail. Remove the ssl lines if your provider does not support it. See the Fetchmail man page for more details. The settings in the file will get the mail from the server and give it to Procmail to deliver it. Then it will send the command to remove the mail from the server. No mail will be left on the server after this! All mail will be local and the you will not be able to see it in any webmail system the ISP runs. If you want to see it in a webmail system you will have to kill Fetchmail so it stops removing the mail from the server (killall fetchmail).

Procmail does not need any special settings as it will deliver the mail to /var/mail/local_login_name by default. Thunderbird will pick up the mail from that file and move it to it's own dir.

Now to make a Movemail account in Thunderbird. Open Thunderbird and go to the top menu and select File->New->Account. You will get the new account dialog box. If you are opening Thunderbird for the first time then this box is already up. In the new account box choose "Unix Mailspool (Movemail)" then click the next button. Put in the users name and email address then click the next button. Uncheck the "Use Global Inbox (store mail in Local Folders) box. This will put the mail in the global Inbox for all accounts. Then click next. Put in a name for the account (what it will be called in the config menu and in the left hand pane). Go to Edit->Account Settings. Go to the name of the account you just choose to set some configuration settings. Fill in the "Reply-To" address with the users email address. Click on "Server Settings" and choose the check for messages times. Then click on the next item "Copies & Folders". Select each drop down box and choose "Local Folders" for each. Set the rest of the settings to your preference.

Now start Fetchmail by going to a command prompt and typing "fetchmail". It should start. To watch the mail come in you can watch (tail -f ) the /home/local_login_name/fetchmail.log file that we specified in the config file. When mail comes in it is shown in the logfile along with any errors. Once an email comes in you can hit the "Get Mail" button in Thunderbird and it will get the mail from the /var/mail/local_login_name dir and put it in /home/local_login_name/.thunderbird/xxxxx.default/Mail/localhost. You should see the mail come up in Thunderbird.

Now let's make sure Fetchmail starts on boot. Put the line "/usr/bin/fetchmail" in the /etc/rc.local file. That is if you have or can use that file on start up. Most Unixes have this. That will make it start on boot. At anytime you want to make Fetchmail get mail just execute "fetchmail" from the command line and it will try and retrieve mail.

Reddit!

Related stories

Changing your menu font size and type in Thunderbird
Posted on 12-28-2007 21:01:00 UTC | Updated on 12-28-2007 21:01:00 UTC
Section: /software/thunderbird/ | Permanent Link

This article will show you how to change your menu font size and type in Thunderbird. This can't be done with the GUI so the only way I found to change it is to edit the userChrome.css file. The userChrome.css file sets the display rules for web content and is located in the sub-folder called chrome in your profile folder. As with userChrome.css, this folder does not exist by default, so you need to create it before you can start adding your preferences.

First thing to do is locate your profile folder. This is where Thunderbird saves all your settings on your hard drive.

On Windows Vista/XP/2000, the path is usually %AppData%\Thunderbird\Profiles\xxxxxxxx.default\, where xxxxxxxx is a random string of 8 characters. Just browse to C:\Documents and Settings\[User Name]\Application Data\Thunderbird\Profiles\ on Windows XP/2000. On Windows Vista C:\users\[User Name]\AppData\Roaming\Thunderbird\Profiles\.

On Windows 95/98/Me, the path is usually C:\WINDOWS\Application Data\Thunderbird\Profiles\xxxxxxxx.default\.

On Linux, the path is usually ~/.thunderbird/xxxxxxxx.default/ where xxxxxxxx is a random string of 8 characters.

On Mac OS X, the path is usually ~/Library/Thunderbird/Profiles/xxxxxxxx.default/.

For example in linux:

mkdir -p ~/.thunderbird/xxxxxxxx.default/chrome

where xxxxxxxx is a random string of 8 characters.

In your newly created directory create a new file called userChrome.css with your favorite text editor.

Put in the font-size line below if you want to change the size of the font or the font-family line below if you want to change the font type. Then save it and exit.

* {font-size: 12pt !important;}
* {font-family: Arial !important;}

Restart Thunderbird or Mozilla and it will have the new settings.

Reddit!

Related stories

Opening links from thunderbird in firefox on linux
Posted on 08-09-2006 04:01:00 UTC | Updated on 08-09-2006 04:01:00 UTC
Section: /software/thunderbird/ | Permanent Link

Let's say you download the firefox and thunderbird linux packages from Mozilla.org. You drop both of them into a directory of your choosing. Then you unzip/tar them to that dir. You switch to the thunderbird dir and fire it up. After setting it up you eventually get an email with an hyperlink (http,https,ftp) in it. So you click on it but nothing happens. Well this is becasue there is nothing that tells thunderbird what to open these links with. The problem with thunderbird is that it does not provide any way that I have found to set this through the GUI interface. IMHO that sucks. So now we are left with setting it manualy in a file.

The settings that you need to link to your browser are in the prefs.js file. This file is in your home dir in the hidden dir ".thunderbird/[randomcharacters].default/prefs.js. The "[randomcharachers]" should be replaced by whatever thunderbird used when it installed the config files. It picks the first half of this file using random characters. It will be different for each user. So open that file with your favorite editor and put in the lines below.

user_pref("network.protocol-handler.app.ftp", "/home/yourusername/firefox/firefox");
user_pref("network.protocol-handler.app.http", "/home/yourusername/firefox/firefox");
user_pref("network.protocol-handler.app.https", "/home/yourusername/firefox/firefox");

The lines above can be put at the bottom of the prefs.js file. You must change the end of each line to point to your firefox browser binary or a binary of your favorite web browser. If you have thunderbird open while you do this you will need to restart it for the settings to take effect.

Reddit!

Related stories


RSS Feed RSS feed logo

About


3com

3ware

alsa

alsactl

alsamixer

amd

android

apache

areca

arm

ati

auditd

awk

badblocks

bash

bind

bios

bonnie

cable

carp

cat5

cdrom

cellphone

centos

chart

chrome

chromebook

cifs

cisco

cloudera

comcast

commands

comodo

compiz-fusion

corsair

cpufreq

cpufrequtils

cpuspeed

cron

crontab

crossover

cu

cups

cvs

database

dbus

dd

dd_rescue

ddclient

debian

decimal

dhclient

dhcp

diagnostic

diskexplorer

disks

dkim

dns

dos

dovecot

drac

dsniff

dvdauthor

e-mail

echo

editor

emerald

encryption

ethernet

expect

ext3

ext4

fat32

fedora

fetchmail

fiber

filesystems

firefox

firewall

flac

flexlm

floppy

flowtools

fonts

format

freebsd

ftp

gdm

gmail

gnome

google

gpg

greasemonkey

greylisting

growisofs

grub

hacking

hadoop

harddrive

hba

hex

hfsc

html

html5

http

https

hulu

idl

ie

ilo

intel

ios

iperf

ipmi

iptables

ipv6

irix

javascript

kde

kernel

kickstart

kmail

kprinter

krecord

kubuntu

kvm

lame

ldap

linux

logfile

lp

lpq

lpr

maradns

matlab

memory

mencoder

mhdd

mkinitrd

mkisofs

moinmoin

motherboard

mouse

movemail

mplayer

multitail

mutt

myodbc

mysql

mythtv

nagios

nameserver

netflix

netflow

nginx

nic

ntfs

ntp

nvidia

odbc

openbsd

openntpd

openoffice

openssh

openssl

openvpn

opteron

parted

partimage

patch

perl

pf

pfflowd

pfsync

photorec

php

pop3

pop3s

ports

postfix

power

procmail

proftpd

proxy

pulseaudio

putty

pxe

python

qemu

r-studio

raid

recovery

redhat

router

rpc

rsync

ruby

saltstack

samba

schedule

screen

scsi

seagate

seatools

sed

sendmail

sgi

shell

siw

smtp

snort

solaris

soundcard

sox

spam

spamd

spf

spotify

sql

sqlite

squid

srs

ssh

ssh.com

ssl

su

subnet

subversion

sudo

sun

supermicro

switches

symbols

syslinux

syslog

systemd

systemrescuecd

t1

tcpip

tcpwrappers

telnet

terminal

testdisk

tftp

thttpd

thunderbird

timezone

ting

tls

tools

tr

trac

tuning

tunnel

ubuntu

unbound

vi

vpn

wget

wiki

windows

windowsxp

wireless

wpa_supplicant

x

xauth

xfree86

xfs

xinearama

xmms

youtube

zdump

zeromq

zic

zlib