modoboa / modoboa-webmail

The webmail of Modoboa
MIT License
73 stars 48 forks source link

Updrade plugins #127

Closed plvsouza closed 6 years ago

plvsouza commented 6 years ago

I try this:

pip install modoboa-sievefilters==1.2.0
pip install modoboa-webmail==1.2.2
systemctl restart uwsgi
systemctl restart nginx

but the web admin still shows I have to upgrade

plvsouza commented 6 years ago

And I also tried

pip install modoboa-sievefilters==1.2.0
pip install modoboa-webmail==1.2.2
cd /srv/modoboa/instance
python manage.py migrate
python manage.py collectstatic
systemctl restart uwsgi
systemctl restart nginx

but the result is the same

tonioo commented 6 years ago

I think you forgot to load your virtualenv before installing the new versions. Can you check that?

plvsouza commented 6 years ago

I don’t know how to do this on ubuntu 16.04. Can you help me?

Pedro Luis Vieira e Souza +55 (11) 99305-7145 plvsouza@gmail.com

On 9 Nov 2017 16:07 -0200, Antoine Nguyen notifications@github.com, wrote:

I think you forgot to load your virtualenv before installing the new versions. Can you check that? — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

tonioo commented 6 years ago

If you installed modoboa using the installer and with default options:

> su - modoboa
> bash
> source env/bin/activate
> pip install modoboa-webmail==1.2.2
> pip install modoboa-sievefilters==1.2.0
> cd instance
> python manage.py collectstatic

and then reload uwsgi.

plvsouza commented 6 years ago

Thanks, it's work