0949

所属分类:书籍源码
开发工具:Java
文件大小:2961KB
下载次数:209
上传日期:2004-10-14 19:42:26
上 传 者lightcolor
说明:  java大型商务网站电子邮件系统。这是“华源网络”公司在关闭之前公开的一款他们公司的邮件系统,具有和263、163、SOHU、等大网络公司邮件系统一样的功能,支持POP/STMP等功能(
(websites of major business e-mail system. This is "Huayuan network" in the open before the closure of their company's new e-mail system, and with 263,163, SOHU, other large Internet companies like the mail system function, support POP/STMP function ()

文件列表:
com (0, 2001-01-20)
com\sun (0, 2001-01-20)
com\sun\activation (0, 2001-01-20)
com\sun\activation\registries (0, 2001-01-20)
com\sun\activation\registries\LineTokenizer.class (1949, 2000-09-30)
com\sun\activation\registries\MailcapEntry.class (813, 2000-09-30)
com\sun\activation\registries\MailcapFile.class (6137, 2000-09-30)
com\sun\activation\registries\MailcapParseException.class (335, 2000-09-30)
com\sun\activation\registries\MailcapTokenizer.class (3581, 2000-09-30)
com\sun\activation\registries\MimeTypeEntry.class (760, 2000-09-30)
com\sun\activation\registries\MimeTypeFile.class (3735, 2000-09-30)
com\sun\activation\viewers (0, 2001-01-20)
com\sun\activation\viewers\ImageViewer.class (2572, 2000-09-30)
com\sun\activation\viewers\ImageViewerCanvas.class (964, 2000-09-30)
com\sun\activation\viewers\TextEditor.class (4028, 2000-09-30)
com\sun\activation\viewers\TextViewer.class (1867, 2000-09-30)
com\sun\mail (0, 2001-01-20)
com\sun\mail\handlers (0, 2001-01-20)
com\sun\mail\handlers\message_rfc822.class (2497, 2000-09-30)
com\sun\mail\handlers\multipart_mixed.class (1943, 2000-09-30)
com\sun\mail\handlers\text_html.class (1064, 2000-09-30)
com\sun\mail\handlers\text_plain.class (3404, 2000-09-30)
com\sun\mail\iap (0, 2001-01-20)
com\sun\mail\iap\Argument.class (3518, 2000-09-30)
com\sun\mail\iap\AString.class (257, 2000-09-30)
com\sun\mail\iap\Atom.class (284, 2000-09-30)
com\sun\mail\iap\BadCommandException.class (420, 2000-09-30)
com\sun\mail\iap\ByteArray.class (849, 2000-09-30)
com\sun\mail\iap\CommandFailedException.class (426, 2000-09-30)
com\sun\mail\iap\ConnectionException.class (420, 2000-09-30)
com\sun\mail\iap\ParsingException.class (414, 2000-09-30)
com\sun\mail\iap\Protocol.class (5442, 2000-09-30)
com\sun\mail\iap\ProtocolException.class (626, 2000-09-30)
com\sun\mail\iap\Response.class (5138, 2000-09-30)
com\sun\mail\iap\ResponseHandler.class (211, 2000-09-30)
com\sun\mail\iap\ResponseInputStream.class (1644, 2000-09-30)
com\sun\mail\imap (0, 2001-01-20)
com\sun\mail\imap\DefaultFolder.class (2479, 2000-09-30)
com\sun\mail\imap\IMAPBodyPart.class (7372, 2000-09-30)
com\sun\mail\imap\IMAPFolder.class (20670, 2000-09-30)
... ...

0. export SETUPDIR=/home/fengyun/fastmail 1. install mysql to /usr/local/mysql # cd $SETUPDIR # tar -zvxf mysql-3.22.32.tar.gz # cd mysql-3.22.32 # ./configure --prefix=/usr/local/mysql # make # make install # cd /usr/local/mysql/bin # ./mysql_db_install # ./safe_mysqld & # ./mysqladmin -u root password .... # ./mysql -u root < $SETUPDIR/mysql.txt 2. install jdk1.2.2 to /usr/local/jdk (the target directory must be /usr/local/jdk) # cd $SETUPDIR # tar -zvxf jdk1_2_2-linux-i386.tar.gz # mv jdk1.2.2 /usr/local/jdk # cp tomcatjsp.jar /usr/local/jdk/lib # cp fastmail.jar /usr/local/jdk/lib # vi /etc/profile add lines : PATH=$PATH:/usr/local/jdk/bin:/usr/local/mysql/bin CLASSPATH=/usr/local/jdk/lib/tools.jar:/usr/local/jdk/lib:/usr/local/jdk/jre/lib:./:/usr/local/jdk/lib/tomcatjsp.jar:/usr/local/jdk/lib/fastmail.jar JAVA_HOME=/usr/local/jdk export JAVA_HOME CLASSPATH and save it 3. install apache + php4 to /www (the target directory must be /www) # cd $SETUPDIR # tar -zvxf apache_1.3.12.tar.gz # tar -zvxf php-4.0.0.tar.gz # cd apache_1.3.12 # ./configure # cd ../php-4.0.0 # ./configure --with-mysql --with-apache=../apache_1.3.12 --enable-track-vars # make # make install # cd ../apache_1.3.12 # ./configure --prefix=/www --activate-module=src/modules/php4/libphp4.a --enable-module=so # make # make install # cp apache /usr/bin # chmod 755 /usr/bin/apache 4. install tomcat to /www/tomcat # cd $SETUPDIR # tar -zvxf jakarta-tomcat.tar.gz (this package has been modifyed by fengyun) # cd jakarta-tomcat # ./build.sh (it has been modifyed by fengyun,sure "tomcatjsp.jar" in $CLASSPATH) # vi /www/conf/httpd.conf add a line : Include "/www/tomcat/conf/tomcat.conf" 5. install qmail to /var/qmail: # cd $SETUPDIR # tar -zvxf qmail-1.05.tar.gz # cd qmail-1.05 # ./install.sh yourdomainname # mv /usr/sbin/sendmail /usr/sbin/sendmailbak (if it exists) # mv /usr/lib/sendmail /usr/lib/sendmailbak (if it exists) # ln -s /var/qmail/bin/sendmail /usr/sbin/sendmail # ln -s /var/qmail/bin/sendmail /usr/lib/sendmail # /usr/bin/qmail qmail ready # cd $SETUPDIR # tar -zvxf ucspi-tcp-0.84.tar.gz # cd ucspi-tcp-0.84 # make # make setup check # cd .. # vi tcp.smtp (edit it if need) # cp tcp.smtp /etc # /var/qmail/bin/tcprules tcp.smtp.cdb tcp.smtp.tmp < /etc/tcp.smtp # /usr/bin/smtp (start the stmp daemon) # vi /usr/bin/pop3 if "pop3" define in "/etc/services", replace "pop-3" with "pop3" else if "pop-3" define in it , no changes replace "fengyun.china.netdao.com" with your domain name save it # /usr/bin/pop3 next test send a mail and receive a mail ...... 6. Install Fastmail(Web) # cd /www # rm -rf htdocs # cd $SETUPDIR # tar -zvxf htdocs.tar.gz /www # vi /www/htdocs/WEB-INF/Fastmail.properties edit it if needed # tomcat restart

近期下载者

相关文件


收藏者