From a8cde77d5fabcc5c56cb3e9bd141b1fc3b167def Mon Sep 17 00:00:00 2001 From: fonfon Date: Sat, 31 Jan 2015 18:28:12 +0100 Subject: [PATCH] system configuration: make domain optional --- plinth/modules/config/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plinth/modules/config/config.py b/plinth/modules/config/config.py index 046e1aa67..881f758e8 100644 --- a/plinth/modules/config/config.py +++ b/plinth/modules/config/config.py @@ -81,6 +81,7 @@ and must not be greater than 63 characters in length.'), help_text=_('Your domain name is the global name by which other \ machines on the Internet can reach you. It must consist of alphanumeric words \ separated by dots.'), + required=False, validators=[ validators.RegexValidator(r'^[a-zA-Z][a-zA-Z0-9.]*$', _('Invalid domain name'))])