domain option dkim
This commit is contained in:
parent
bc0e654fab
commit
ef4ee7be28
@ -29,6 +29,7 @@ public class DomainModuleImpl extends AbstractModuleImpl {
|
||||
public static final String DOMOPT_BACKUPFOREXTERNALMX = "backupmxforexternalmx";
|
||||
public static final String DOMOPT_LETSENCRYPT = "letsencrypt";
|
||||
public static final String DOMOPT_AUTOCONFIG = "autoconfig";
|
||||
public static final String DOMOPT_DKIM = "dkim";
|
||||
|
||||
public static final String[] ALL_DOMOPTS =
|
||||
new String[] {
|
||||
@ -39,7 +40,8 @@ public class DomainModuleImpl extends AbstractModuleImpl {
|
||||
DOMOPT_INCLUDES,
|
||||
DOMOPT_BACKUPFOREXTERNALMX,
|
||||
DOMOPT_LETSENCRYPT,
|
||||
DOMOPT_AUTOCONFIG
|
||||
DOMOPT_AUTOCONFIG,
|
||||
DOMOPT_DKIM
|
||||
};
|
||||
public static final String[] DEFAULT_DOMOPTS =
|
||||
new String[] {
|
||||
|
@ -26,6 +26,7 @@ public class DomainOptionValues extends DefaultSelectableValues {
|
||||
list.add(new BooleanListValue("multiviews"));
|
||||
list.add(new BooleanListValue("letsencrypt"));
|
||||
list.add(new BooleanListValue("autoconfig"));
|
||||
list.add(new BooleanListValue("dkim"));
|
||||
return list;
|
||||
}
|
||||
|
||||
|
@ -162,10 +162,6 @@ public class JsonPillarServlet extends HttpServlet {
|
||||
writer.println(" , \"" + optName + "\": " + optValue.toString().toLowerCase());
|
||||
}
|
||||
}
|
||||
// begin DKIM Test
|
||||
final String dkimOpt = ("wikv.de".equals(domName) || "meinblog.de".equals(domName)) ? "true" : "false";
|
||||
writer.println(" , \"" + "dkim" + "\": " + dkimOpt);
|
||||
// end DKIM Test
|
||||
writer.println(" }");
|
||||
writer.println(" , \"validsubdomains\": \"" + validSubdomainNames + "\"");
|
||||
writer.println(" }");
|
||||
|
Loading…
Reference in New Issue
Block a user