Subversion Repositories javautils

Compare Revisions

Regard whitespace Rev 22 → Rev 23

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