Sunil Mohan Adapa affffddf36
roundcube: Add setting for local connection only
When this option is enabled, it would make the interface easy to work with. This
is likely what most users would want. Don't break things for users who have
already installed roundcube and ensure that local only is disable for them.

Tests:

- Install roundcube without the patch. Disable the app. Apply patch. Restart
service. Notice that roundcube is not re-enabled.

- Install roundcube without the patch. Apply patch. Restart service. Notice that
roundcube configuration /etc/roundcube/config.inc.php file has been updated and
include_once() at the end has been added. The file
/etc/roundcube/freedombox-config.php has been added. Local only option is
disabled.

- Install roundcube freshly with the patch. Local only option is enabled. Open
interface. Notice that server option is not presented.

- Disable local only option and notice that server field is shown in the
interface.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
[jvalleroy: Fix comment]
Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2022-01-31 18:46:01 -05:00

20 lines
639 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Configuration forms for roundcube.
"""
from django import forms
from django.utils.translation import gettext_lazy as _
from plinth import cfg
from plinth.utils import format_lazy
class RoundcubeForm(forms.Form):
"""Roundcube configuration form."""
local_only = forms.BooleanField(
label=_('Use only the local mail server'), help_text=format_lazy(
_('When enabled, text box for server input is removed from login '
'page and users can only read and send mails from this '
'{box_name}.'), box_name=_(cfg.box_name)), required=False)