]> WPIA git - gigi.git/blob - src/club/wpia/gigi/util/SystemKeywords.java
upd: make system-keywords configurable
[gigi.git] / src / club / wpia / gigi / util / SystemKeywords.java
1 package club.wpia.gigi.util;
2
3 import club.wpia.gigi.util.ServerConstants.Host;
4
5 public class SystemKeywords {
6
7     public static final String CAA_NAME = ServerConstants.getSuffix();
8
9     public static final String SMTP_NAME = ServerConstants.getHostName(Host.WWW);
10
11     public static final String SMTP_PSEUDO_FROM = "returns@" + ServerConstants.getSuffix();
12
13     public static final String HTTP_CHALLENGE_PREFIX = ".well-known/" + ServerConstants.getAppIdentifier() + "-challenge/";
14
15     public static final String DNS_PREFIX = "_" + ServerConstants.getAppIdentifier();
16 }