Preskočiť na hlavný obsah

Príspevky

Zobrazujú sa príspevky z dátumu 2014

Antix SMTP

Antix SMTP is awsome smtp server for developers. This allows you to configure and test the way SMTP servers work. You can create multiple hosts and ports. This fake SMTP server do not send emails actually, it's only for testing. Main features: Fake - will not actually send e-mails, no risk of accidentally e-mailing to a client  Testable - you can create the server in code, then test your e-mailing functions and check the server to confirm they have been sent Configurable - you can add multiple hosts as on different ports Extendable - you can write you own message storage, e.g. into the database

How to manually add new jdk to gentoo

#list available JDKs java-config-2 -L #download and unpack tgz from oracle, eg oracle-jdk-1.7 /opt/oracle-jdk-1.7 #link-to /opt/oracle-jdk-1.7 /usr/lib/jvm/oracle-jdk-1.7 #create file /usr/share/java-config-2/vm/oracle-jdk-1.7 VERSION="Oracle JDK 1.7.0" JAVA_HOME=/opt/oracle-jdk-1.7 JDK_HOME=${JAVA_HOME} JAVAC=${JAVA_HOME}/bin/javac PATH="${JAVA_HOME}/bin:${JAVA_HOME}/jre/bin" ROOTPATH="${JAVA_HOME}/bin:${JAVA_HOME}/jre/bin" LDPATH="${JAVA_HOME}/jre/lib/i386/:${JAVA_HOME}/jre/lib/i386/jli/:${JAVA_HOME}/jre/lib/i386/xawt/:${JAVA_HOME}/jre/lib/i386/server/" MANPATH="${JAVA_HOME}/man" PROVIDES_TYPE="JDK JRE" PROVIDES_VERSION="1.7" # Taken from sun.boot.class.path property BOOTCLASSPATH="${JAVA_HOME}/jre/lib/resources.jar:${JAVA_HOME}/jre/lib/rt.jar:${JAVA_HOME}/jre/lib/jsse.jar:${JAVA_HOME}/jre/lib/jce.jar:${JAVA_HOME}/jre/lib/charsets.jar" GENERATION="2" ENV_VARS="JAVA_H