Evolution Email
Evolution is an application for managing email, calendars, contacts, tasks, and notes. It is the default mail client in GNOME. It includes support for IMAP, Microsoft Exchange Server 2007 and 2010, Novell GroupWise, Kolab, LDAP, WebDAV, CalDAV, and many other services and protocols.
Evolution (Linux/UNIX Version)
50star.png
- License: Open Source
- Outlook / Exchange capabilities
- Excellent Security
- Excellent Interface
- The best email software available for *NIX platform
*The Windows version of Evolution is rated lower, although it works, there are issues on that platform.
Receiving Mail
- Server Type: POP
- Server: pop.gmail.com
- Username: <username>@gmail.com
- Use Secure Connecetion: SSL encryption
- Authenthication Type: Password
Optionally fill in automatically check for new mail every ** minutes. The rest is user specific. Sending Mail
- Server type: SMTP
- Server: smtp.gmail.com
- Port: 587
- Server requires authentication: Checked
- Use Secure Connection: TSL
- Fill in Username: <username>@gmail.com
- Authentication: PLAIN or Login
You are now finished with configuring Evolution for Gmail. Just hit Send/Receive in the main screen and wait for new mail. If it still didn't work, go here.
Installation
Linux
Linux Ubuntu or Mint
sudo apt install evolution
That's it!
Configuration
Primary Email Account
Adding a Gmail Account
Creating an Outbound-Only Account / Email Alias
- open the Preferences Window, which is found in Edit > Preferences.
- click “Add”, click though and enter your email address and info under Identity Settings.
- on “Recieving Email” choose “None”
- on "Sending Email" enter your pop or imap credentials.
- click finish
(Tested with Evolution 3.18.x)
Export / Migrate
After the identical version of Evolution has been installed on the new system, you will access the old system or hard drive to obtain the following from their respective paths and copy to the identical path on the new system. (Tested with Evolution 3.18.x)
- /home/%user%/.local/share/evolution/
- /home/%user%/.cache/evolution/
- /home/%user%/.config/evolution/
Troubleshooting
Spell checker is not working in Ximian Evolution 1.2.2
Date: Tue Nov 9 19:24:53 CST 2004
"The Evolution mail composer uses the gnome-spell tool to highlight misspelled words on the fly as you type them, and give you suggestions for possible corrections. To turn on spell checking you need to verify that the required software is installed then configure Evolution. "
Required software:
- aspell
- pspell
- gnome-spell
- aspell dictionary
Procedure:
- Click on Tools- >Settings->Composer
- Preferences->Spell Checking. Select the language that you would like the use and click on Enable.
Spell checker is not working in Evolution 3.18
Date: Thu Mar 1 2018
Evolution is dependent upon external spell checkers. Commonly users configure Evolution to use aspell.
apt install aspell
Then
- Evolution -> Edit -> Preferences -> Composer Preferences -> Spell Checking
Select ENGLISH and at the bottom [x] Check spelling while I type.
Be advised, after a crash or some other unknown alignment of the planets it seems that spell checking will stop working again and you have to go in and select the language again.
If you need to select an aspell language, it is: en_US:aspell so Installing aspell-en if not installed gives you a working dictionary for Evolution. You can also use alternative dictionaries.
sudo apt install aspell-en
Why are several evolution processes running on my Ubuntu 16.10 system system when I dont even have it installed?
Well, on this wiki page we like to hear about folks running evolution, but if you don't want it and find it is still present we can help you out too!
If you remove evolution-calendar-factory you will break your desktop because this is a library shared by many programs in the Ubuntu distribution.
Do not execute: sudo apt-get purge evolution-data-server or sudo apt-get remove evolution-data-server
DO NOT FOLLOW THE ADVICE OF THIS IDIOT: https://askubuntu.com/questions/434500/why-is-the-evolution-calendar-factory-process-running
This is a good tread to read: https://askubuntu.com/questions/480753/remove-evolution-calendar-factory-from-startup
Here's what I did, which involves NOT removing it, but rather killing it out of memory if indeed it starts to irritate me by taking too much memory, which I have not really found to be a big problem even on my somewhat aging computer:
I modified the script and run it manually.
vi /chooser/killevol
Enter the following...
#start on desktop-start #stop on desktop-end #script ME=nicolep GIVEUP=60 while ! pgrep -u "$ME" -f '^/usr/lib/evolution/evolution'; do GIVEUP=$((GIVEUP - 1)) if test $GIVEUP = 0; then break fi sleep 1 done pkill -u "$ME" -f '^/usr/lib/evolution/evolution' #end script
change the USER= to your username and chmod +x the script