modoboa / modoboa-imap-migration

An extension to ease the migration between 2 IMAP servers using offlineimap
ISC License
16 stars 12 forks source link

How to update to latest version #84

Closed louis-eyond closed 3 years ago

louis-eyond commented 3 years ago

I have a prompt stating one or more updates is available, and listing the newest release of imap_migration:

IMAP migration using OfflineIMAP 1.3.3 1.3.4 Migrate existing mailboxes using IMAP and OfflineIMAP

I've tried git pull origin master, then running python3 setup.py install, but am not getting any update after restarting uwsgi. It still indicates 1.3.3. Can you provide any guidance on how to update to the latest?

tonioo commented 3 years ago

You need to update your package using pip:

su - modoboa
bash
source env/bin/active
pip install modoboa-imap-migration==1.3.4
cd instance
python manage.py migrate
python manage.py collectstatic

And then reload uwsgi.

louis-eyond commented 3 years ago

Thank you