app-MAIL-temp/docs/upgrade.md

127 lines
3.7 KiB
Markdown
Raw Normal View History

2020-03-13 12:32:48 +01:00
Upgrading SimpleLogin usually consists of simply pulling the latest version, stop & re-run SimpleLogin containers: *sl-migration*, *sl-app* and *sl-email*. It's not necessary to restart *sl-db* as it uses Postgres image.
2020-03-13 00:14:41 +01:00
2020-03-13 12:32:48 +01:00
No emails or any data is lost in the upgrade process. The same process is by the way used by the SimpleLogin SaaS version which is deployed several times per day.
2020-03-13 18:43:46 +01:00
Sometimes upgrading to a major version might require running a manual migration. This is for example the case when upgrading to 2.0.0. In this case please follow the corresponding migration first before running these scripts.
2020-03-25 12:06:54 +01:00
<details>
<summary>Upgrade to 2.1.0 from 2.0.0</summary>
<p>
2.1.0 comes with PGP support. If you use PGP, please follow these steps to enable this feature:
2020-03-25 12:09:21 +01:00
1) In your home directory (where `dkim.key` is located), create directory to store SimpleLogin data
2020-03-25 12:06:54 +01:00
```bash
mkdir sl
mkdir sl/pgp # to store PGP key
mkdir sl/db # to store database
```
2) Then add this line to your config simplelogin.env file
```
GNUPGHOME=/sl/pgp # where to store PGP keys
```
Now you can follow the usual steps to upgrade SimpleLogin.
</p>
</details>
2020-03-13 18:43:46 +01:00
<details>
<summary>Upgrade to 2.0.0</summary>
<p>
2.0.0 comes with mailbox feature that requires running a script that puts all existing users to "full-mailbox" mode.
1) First please make sure to upgrade to 1.0.5 which is the latest version before 2.0.0.
2) Then connect to your SimpleLogin container shell:
```bash
docker exec -it sl-app python shell.py
```
3) Finally copy and run this below script:
```python
"""This ad-hoc script is to be run when upgrading from 1.0.5 to 2.0.0
"""
from app.extensions import db
from app.log import LOG
from app.models import Mailbox, Alias, User
2020-03-13 18:43:46 +01:00
for user in User.query.all():
if user.default_mailbox_id:
# already run the migration on this user
continue
# create a default mailbox
default_mb = Mailbox.get_by(user_id=user.id, email=user.email)
if not default_mb:
LOG.d("create default mailbox for user %s", user)
default_mb = Mailbox.create(user_id=user.id, email=user.email, verified=True)
db.session.commit()
# assign existing alias to this mailbox
for gen_email in Alias.query.filter_by(user_id=user.id):
2020-03-13 18:43:46 +01:00
if not gen_email.mailbox_id:
LOG.d("Set alias %s mailbox to default mailbox", gen_email)
gen_email.mailbox_id = default_mb.id
# finally set user to full_mailbox
user.full_mailbox = True
user.default_mailbox_id = default_mb.id
db.session.commit()
```
</p>
</details>
2020-03-13 12:32:48 +01:00
```bash
# Pull the latest version
2020-03-25 12:03:34 +01:00
sudo docker pull simplelogin/app:2.1.0
2020-03-13 12:32:48 +01:00
# Stop SimpleLogin containers
sudo docker stop sl-email sl-migration sl-app
# Make sure to remove these containers to avoid conflict
sudo docker rm -f sl-email sl-migration sl-app
# Run the database migration
sudo docker run --rm \
--name sl-migration \
2020-03-25 12:03:34 +01:00
-v $(pwd)/sl:/sl \
2020-03-13 12:32:48 +01:00
-v $(pwd)/dkim.key:/dkim.key \
-v $(pwd)/dkim.pub.key:/dkim.pub.key \
-v $(pwd)/simplelogin.env:/code/.env \
--network="sl-network" \
2020-03-25 12:03:34 +01:00
simplelogin/app:2.1.0 flask db upgrade
2020-03-13 12:32:48 +01:00
# Run the webapp container
sudo docker run -d \
--name sl-app \
2020-03-25 12:03:34 +01:00
-v $(pwd)/sl:/sl \
2020-03-13 12:32:48 +01:00
-v $(pwd)/simplelogin.env:/code/.env \
-v $(pwd)/dkim.key:/dkim.key \
-v $(pwd)/dkim.pub.key:/dkim.pub.key \
-p 7777:7777 \
--restart always \
--network="sl-network" \
2020-03-25 12:03:34 +01:00
simplelogin/app:2.1.0
2020-03-13 12:32:48 +01:00
# Run the email handler container
sudo docker run -d \
--name sl-email \
2020-03-25 12:03:34 +01:00
-v $(pwd)/sl:/sl \
2020-03-13 12:32:48 +01:00
-v $(pwd)/simplelogin.env:/code/.env \
-v $(pwd)/dkim.key:/dkim.key \
-v $(pwd)/dkim.pub.key:/dkim.pub.key \
-p 20381:20381 \
--restart always \
--network="sl-network" \
2020-03-25 12:03:34 +01:00
simplelogin/app:2.1.0 python email_handler.py
2020-03-13 12:32:48 +01:00
```