Subversion Repositories javautils

Compare Revisions

Regard whitespace Rev 20 → Rev 21

/ViaThinkSoft Java Utils/test/eMailTests/TestConfiguration.java
4,34 → 4,16
// Ginge auch als Singleton
 
public final class TestConfiguration {
public static String getSpamAddress() {
// Gott habe Mitleid mit dem Eigentümer dieser E-Mail-Adresse...
return "b973768@owlpic.com";
 
// Eine Wegwerfadresse für manuelle Tests kann auf
// www.10minutemail.com erstellt werden.
}
private static final String SPAMMING_MAIL_ADDRESS = "a1175972@bofthew.com";
public static String getSmtpHost() {
return "";
public static String getSpamAddress() {
return SPAMMING_MAIL_ADDRESS;
}
public static String getSmtpUsername() {
return "";
}
public static String getSmtpPassword() {
return "";
}
public static int getSmtpPort() {
return 25;
}
public static String getMailFrom() {
return getSpamAddress();
}
private TestConfiguration() {
}
}