mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-04 08:53:42 +00:00
* remove local config and sqlite file * add them to the backup manifest Tests: 1. Modify the user's email address inside roundcube 2. Reinstall the app and confirm the modification was reset 3. Functional tests passed Signed-off-by: nbenedek <contact@nbenedek.me> [sunil: Update docstrings, make uninstall fail-safe] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
19 lines
406 B
Python
19 lines
406 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
clients = [{
|
|
'name': _('Roundcube'),
|
|
'platforms': [{
|
|
'type': 'web',
|
|
'url': '/roundcube'
|
|
}]
|
|
}]
|
|
|
|
backup = {
|
|
'data': {
|
|
'files': ['/etc/roundcube/freedombox-config.php',
|
|
'/var/lib/dbconfig-common/sqlite3/roundcube/roundcube']
|
|
}
|
|
}
|