X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Femail%2FMailProbe.java;h=41fc99a5d3f5b72cd7509270bf45be5beb79a02f;hb=a8422ae5d5dc70c5a2776d3cead356c111e5b9d7;hp=7bca705cbd288beb25305bc3e20d8dea78d67dd4;hpb=446d3aa82c177eb844f6f19c8f85d4a6e631efe7;p=gigi.git diff --git a/src/org/cacert/gigi/email/MailProbe.java b/src/org/cacert/gigi/email/MailProbe.java index 7bca705c..41fc99a5 100644 --- a/src/org/cacert/gigi/email/MailProbe.java +++ b/src/org/cacert/gigi/email/MailProbe.java @@ -9,9 +9,9 @@ public class MailProbe { public static void sendMailProbe(Language l, String type, int id, String hash, String address) throws IOException { StringBuffer body = new StringBuffer(); - body.append(l.getTranslation("Thanks for signing up with CAcert.org, below is the link you need to open to verify your account. Once your account is verified you will be able to start issuing certificates till your hearts' content!")); + body.append(l.getTranslation("Thanks for signing up with SomeCA.org, below is the link you need to open to verify your account. Once your account is verified you will be able to start issuing certificates till your hearts' content!")); body.append("\n\nhttps://"); - body.append(ServerConstants.getWwwHostNamePort()); + body.append(ServerConstants.getWwwHostNamePortSecure()); body.append("/verify?type="); body.append(type); body.append("&id="); @@ -21,8 +21,8 @@ public class MailProbe { body.append("\n\n"); body.append(l.getTranslation("Best regards")); body.append("\n"); - body.append(l.getTranslation("CAcert.org Support!")); - EmailProvider.getInstance().sendmail(address, "[CAcert.org] " + l.getTranslation("Mail Probe"), body.toString(), "support@cacert.org", null, null, null, null, false); + body.append(l.getTranslation("SomeCA.org Support!")); + EmailProvider.getInstance().sendmail(address, "[SomeCA.org] " + l.getTranslation("Mail Probe"), body.toString(), "support@cacert.org", null, null, null, null, false); } }