Changeset 169
- Timestamp:
- 11/06/07 22:30:18 (1 year ago)
- Files:
-
- trunk/jsmtpd/.classpath (modified) (1 diff)
- trunk/jsmtpd/CHANGELOG (modified) (2 diffs)
- trunk/jsmtpd/build.xml (modified) (3 diffs)
- trunk/jsmtpd/plugins/filters/Jasen (deleted)
- trunk/jsmtpd/src/org/jsmtpd/plugins/filters/Jasen (deleted)
- trunk/jsmtpd/startup.bat (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/jsmtpd/.classpath
r130 r169 8 8 <classpathentry kind="lib" path="lib/xercesImpl.jar"/> 9 9 <classpathentry kind="lib" path="lib/xmlParserAPIs.jar"/> 10 <classpathentry kind="lib" path="plugins/filters/Jasen/commons-beanutils.jar"/>11 <classpathentry kind="lib" path="plugins/filters/Jasen/commons-collections-3.1.jar"/>12 <classpathentry kind="lib" path="plugins/filters/Jasen/commons-digester.jar"/>13 <classpathentry kind="lib" path="plugins/filters/Jasen/fastutil-4.3.1-jasen.jar"/>14 <classpathentry kind="lib" path="plugins/filters/Jasen/jasen.jar"/>15 10 <classpathentry kind="lib" path="lib/crypt.jar"/> 16 11 <classpathentry kind="lib" path="lib/commons-logging.jar"/> trunk/jsmtpd/CHANGELOG
r146 r169 1 Version 0.x 2 Ldap auth fix 3 Late rbl checking plugin 4 It's a smtp extension, triggered on data command 5 It performs a check on the connected IP against RBL servers 6 Typical use with policy block list, it won't block smtp auth like the rbl ip filter 7 (ie zen.spamhaus.org by example) 8 Bug fix with slow clamd 9 Removed Jasen plugin from main project (see http://svn.jsmtpd.org/trunk/jasen-plugin/) 10 1 11 Version 0.6a 2 12 Simplified plugin loader code + long type support … … 13 23 -> Seems to be a modified gnu classpath impl ? 14 24 -> Jasen plugin broken. Replace tiger-javamail-1.0.jar with javamail+activation.jar if you need it. 15 Added GrowableThreadPool (Jsmtpd will no longer keep so m uchunused threads). This also needs testing !25 Added GrowableThreadPool (Jsmtpd will no longer keep so many unused threads). This also needs testing ! 16 26 Refactored DeliveryService to QueueService (just a name change as someone suggested). 17 27 Linux startup script changed (start foreground, background, attach a remote jvm debug port). trunk/jsmtpd/build.xml
r165 r169 79 79 </jar> 80 80 </target> 81 82 <target name="jsmtpd-jasen" description="jsmtpd jasen plugin"> 83 <javac debug="on" srcdir="${src.dir}" destdir="${build.dir}" classpathref="wholeLibs" fork="yes" encoding="ISO8859_2" 84 includes="org/jsmtpd/plugins/filters/Jasen/**"> 85 </javac> 86 <mkdir dir="${release.dir}/plugins/filters/Jasen/"/> 87 <jar destfile="${release.dir}/plugins/filters/Jasen/jsmtpd-jasen.jar" basedir="bin/" 88 includes="org/jsmtpd/plugins/filters/Jasen/**"> 89 </jar> 90 <copy todir="${release.dir}/plugins/filters/Jasen/"> 91 <fileset dir="plugins/filters/Jasen/"/> 92 </copy> 93 </target> 94 81 95 82 <target name="jsmtpd-SA" description="jsmtpd spamassassin plugin"> 96 83 <javac debug="on" srcdir="${src.dir}" destdir="${build.dir}" classpathref="wholeLibs" fork="yes" encoding="ISO8859_2" … … 171 158 sourcepath="src" 172 159 classpathref="wholeLibs" 173 excludepackagenames="org.apache.*,org.xbill.*,javax.mail.* ,org.jasen.*"160 excludepackagenames="org.apache.*,org.xbill.*,javax.mail.*" 174 161 defaultexcludes="yes" 175 162 destdir="${release.dir}/doc/Javadoc" … … 193 180 194 181 <target name="buildFullRelease" 195 depends="cleanAll,cleanRelease,jsmtpd-core-jar,jsmtpd-basicplugins-jar,baseRelease,jsmtpd-clamav,jsmtpd- jasen,jsmtpd-SA,jsmtpd-IPFIlters,jsmtpd-snippet,doc">182 depends="cleanAll,cleanRelease,jsmtpd-core-jar,jsmtpd-basicplugins-jar,baseRelease,jsmtpd-clamav,jsmtpd-SA,jsmtpd-IPFIlters,jsmtpd-snippet,doc"> 196 183 </target> 197 184 trunk/jsmtpd/startup.bat
r3 r169 14 14 15 15 rem Jasen setup 16 for %%f in (plugins\filters\Jasen\*.jar) do (call addcp.bat %%f)17 set CPATH=%CPATH%;plugins\filters\Jasen16 rem for %%f in (plugins\filters\Jasen\*.jar) do (call addcp.bat %%f) 17 rem set CPATH=%CPATH%;plugins\filters\Jasen 18 18 19 19 rem inputIPFilters
