0

I am using ubuntu 12.04 and dovecot version is 1.2.9, I want to upgrade my dovecot version from 1.2.9 to 2.1.7

2 Answers2

1

If you do not want to install dovecot from source, first search for a available backport of your package (see https://help.ubuntu.com/community/UbuntuBackports).

If there is no backport available for your version, you can also try to install a version from a later version and resolve the dependencies by hand.

Download your file from http://packages.ubuntu.com/quantal/dovecot-core and then do sudo dpkg -i dovecot-core_2.1.7-1ubuntu1_i386.deb. You may also look into apt pinning for that.

Residuum
  • 1,076
0

Run this:

cd /tmp
wget http://dovecot.org/releases/2.1/dovecot-2.1.7.tar.gz
tar -zxvf dovecot-2.1.7.tar.gz
cd dovecot-2.1.7
sudo apt-get build-dep dovecot-core -y </dev/null
./configure
make
sudo make install
sudo /etc/init.d/dovecot restart
dovecot --version
vaab
  • 254