1.安装基本系统的过程可以设置 主机名 和 域名
2.不要设置硬件时钟为GMT
3.继续安装libc-client不要Maildir支持(我们以后可选择安装 Courier-POP3/Courier-IMAP,所以不必担心)
4.不要配置exmi,因为我们要安装postfix
编辑/etc/network/interfaces,为服务器设置静态IP 还可以设置IP别名(也就是一个网卡绑定2个IP)
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface
auto lo
iface lo inet loopback
# The first network card - this entry was created during the Debian installation
# (network, broadcast and gateway are optional)
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
auto eth0:0
iface eth0:0 inet static
address 192.168.0.101
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
重启网卡
/etc/init.d/networking restart
增加域名服务器
search server
nameserver 145.253.2.75
nameserver 193.174.32.18
nameserver 194.25.0.60
将新增加的IP填入到/etc/hosts
127.0.0.1 localhost.localdomain localhost server1
192.168.0.100 server1.example.com server1
192.168.0.101 virtual-ip1.example.com virtual-ip1
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
设置主机名
echo server1.example.com > /etc/hostname
/bin/hostname -F /etc/hostname
先安装一些我们需要的
apt-get install wget bzip2 rdate fetchmail libdb3++-dev unzip zip
ncftp xlispstat libarchive-zip-perl zlib1g-dev libpopt-dev
nmap openssl lynx fileutils
(注意:上面的命令写在一行里)
再移除一些用不着的
apt-get remove lpr nfs-common portmap pidentd pcmcia-cs pppoe pppoeconf ppp pppconfig
update-rc.d -f exim remove
update-inetd --remove daytime
update-inetd --remove telnet
update-inetd --remove time
update-inetd --remove finger
update-inetd --remove talk
update-inetd --remove ntalk
update-inetd --remove ftp
update-inetd --remove discard
移除软件时需要配置,回答YES
重新加载inetd服务
/etc/init.d/inetd reload
安装磁盘限额工具
apt-get install quota quotatool
配置时,回答NO
像下面这样编辑/etc/fstab ,我增加了userquota,grpquot给root分区
# /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 /dev/sda1 / ext3 defaults,errors=remount-ro,usrquota,grpquota 0 1 /dev/sda5 none swap sw 0 0 /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
然后运行
touch /quota.user /quota.group chmod 600 /quota.* mount -o remount / quotacheck -avugm quotaon -avug
安装Bind9
apt-get install bind9
为安全方面的考虑, 以chroot方式运行BIND: 首先停止服务
/etc/init.d/bind9 stop
编辑/etc/default/bind9,让bind以非特权用户‘bind’来运行,chroot到/var/lib/named.
也就是将
OPTS="-u bind"
这一行改成
OPTIONS="-u bind -t /var/lib/named"
在 /var/lib建立必要的目录
mkdir -p /var/lib/named/etc
mkdir /var/lib/named/dev
mkdir -p /var/lib/named/var/cache/bind
mkdir -p /var/lib/named/var/run/bind/run
将配置文件从/etc移动到 /var/lib/named/etc:
mv /etc/bind /var/lib/named/etc
为了避免当未来bind升级时的一些问题,我们在旧的位置,建立一个到新位置的符号连接
ln -s /var/lib/named/etc/bind /etc/bind
产生null和random设备,修正目录权限
mknod /var/lib/named/dev/null c 1 3
mknod /var/lib/named/dev/random c 1 8
chmod 666 /var/lib/named/dev/null /var/lib/named/dev/random
chown -R bind:bind /var/lib/named/var/*
chown -R bind:bind /var/lib/named/etc/bind
我们需要修改sysklogd的启动脚本/etc/init.d/sysklogd ,以便我们还能够得到重要的登录信息到系统日志。修改这行
SYSLOGD=""
成
SYSLOGD="-a /var/lib/named/dev/log"
也就是改成
#! /bin/sh
# /etc/init.d/sysklogd: start the system log daemon.
PATH=/bin:/usr/bin:/sbin:/usr/sbin
pidfile=/var/run/syslogd.pid
binpath=/sbin/syslogd
test -x $binpath || exit 0
# Options for start/restart the daemons
# For remote UDP logging use SYSLOGD="-r"
#
SYSLOGD="-a /var/lib/named/dev/log"
create_xconsole()
{
if [ ! -e /dev/xconsole ]; then
mknod -m 640 /dev/xconsole p
else
chmod 0640 /dev/xconsole
fi
chown root:adm /dev/xconsole
}
running()
{
# No pidfile, probably no daemon present
#
if [ ! -f $pidfile ]
then
return 1
fi
pid=`cat $pidfile`
# No pid, probably no daemon present
#
if [ -z "$pid" ]
then
return 1
fi
if [ ! -d /proc/$pid ]
then
return 1
fi
cmd=`cat /proc/$pid/cmdline | tr "\000" "\n"|head -n 1`
# No syslogd?
#
if [ "$cmd" != "$binpath" ]
then
return 1
fi
return 0
}
case "$1" in
start)
echo -n "Starting system log daemon: syslogd"
create_xconsole
start-stop-daemon --start --quiet --exec $binpath -- $SYSLOGD
echo "."
;;
stop)
echo -n "Stopping system log daemon: syslogd"
start-stop-daemon --stop --quiet --exec $binpath --pidfile $pidfile
echo "."
;;
reload|force-reload)
echo -n "Reloading system log daemon: syslogd"
start-stop-daemon --stop --quiet --signal 1 --exec $binpath --pidfile $pidfile
echo "."
;;
restart)
echo -n "Restarting system log daemon: syslogd"
start-stop-daemon --stop --quiet --exec $binpath --pidfile $pidfile
sleep 1
start-stop-daemon --start --quiet --exec $binpath -- $SYSLOGD
echo "."
;;
reload-or-restart)
if running
then
echo -n "Reloading system log daemon: syslogd"
start-stop-daemon --stop --quiet --signal 1 --exec $binpath --pidfile $pidfile
else
echo -n "Restarting system log daemon: syslogd"
start-stop-daemon --start --quiet --exec $binpath -- $SYSLOGD
fi
echo "."
;;
*)
echo "Usage: /etc/init.d/sysklogd {start|stop|reload|restart|force-reload|reload-or-restart}"
exit 1
esac
exit 0
重启日志服务
/etc/init.d/sysklogd restart
启动bind,如果有什么错误,可以查看 /var/log/syslog
/etc/init.d/bind9 start
安装
apt-get install mysql-server mysql-client libmysqlclient12-dev
修改管理员密码
mysqladmin -u root password yourrootsqlpassword
当你运行netstat -tap,你应该看到类似于下面的一行
tcp 0 0 localhost.localdo:mysql *:* LISTEN 2449/mysqld
这样的话,意味着MySQL可以通过3306端口访问了,你可以到下一节Postfix了。如果你没有看到上面的那一行,编辑 /etc/mysql/my.cnf,注视掉 skip-networking
# skip-networking
如果你编辑了/etc/mysql/my.cnf,请重启MySQL
/etc/init.d/mysql restart
为了安装Postfix带SMTP-AUTH和TLS,POP3服务器支持POP3s(端口995)和IMAP服务器支持IMAPs(端口993):
apt-get install postfix postfix-tls libsasl2 sasl2-bin libsasl2-modules ipopd-ssl uw-imapd-ssl (在一行命令里输入)
配置回答
<- pop3 and pop3s
<- No
<- Internet Site
<- NONE
<- server1.example.com
<- server1.example.com, localhost.example.com, localhost
<- No
postconf -e 'smtpd_sasl_local_domain ='
postconf -e 'smtpd_sasl_auth_enable = yes'
postconf -e 'smtpd_sasl_security_options = noanonymous'
postconf -e 'broken_sasl_auth_clients = yes'
postconf -e 'smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination'
postconf -e 'inet_interfaces = all'
echo 'pwcheck_method: saslauthd' >> /etc/postfix/sasl/smtpd.conf
echo 'mech_list: plain login' >> /etc/postfix/sasl/smtpd.conf
mkdir /etc/postfix/ssl
cd /etc/postfix/ssl/
openssl genrsa -des3 -rand /etc/hosts -out smtpd.key 1024
chmod 600 smtpd.key
openssl req -new -key smtpd.key -out smtpd.csr
openssl x509 -req -days 3650 -in smtpd.csr -signkey smtpd.key -out smtpd.crt
openssl rsa -in smtpd.key -out smtpd.key.unencrypted
mv -f smtpd.key.unencrypted smtpd.key
openssl req -new -x509 -extensions v3_ca -keyout cakey.pem -out cacert.pem -days 3650
postconf -e 'smtpd_tls_auth_only = no'
postconf -e 'smtp_use_tls = yes'
postconf -e 'smtpd_use_tls = yes'
postconf -e 'smtp_tls_note_starttls_offer = yes'
postconf -e 'smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key'
postconf -e 'smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt'
postconf -e 'smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem'
postconf -e 'smtpd_tls_loglevel = 1'
postconf -e 'smtpd_tls_received_header = yes'
postconf -e 'smtpd_tls_session_cache_timeout = 3600s'
postconf -e 'tls_random_source = dev:/dev/urandom'
文件 /etc/postfix/main.cf 应该像这样:
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
biff = no
# appending .domain is the MUA's job.
append_dot_mydomain = no
# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h
myhostname = server1.example.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = server1.example.com, localhost.example.com, localhost
relayhost =
mynetworks = 127.0.0.0/8
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
smtpd_sasl_local_domain = $myhostname
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination
smtpd_tls_auth_only = no
smtp_use_tls = yes
smtpd_use_tls = yes
smtp_tls_note_starttls_offer = yes
smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
smtpd_tls_loglevel = 1
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom
重启postfix
/etc/init.d/postfix restart
授权将由saslauthd处理. 我们必须改变一些东西来让它正确地工作.因为 Postfix chroot到 /var/spool/postfix 目录 运行,我们必须这样作:
mkdir -p /var/spool/postfix/var/run/saslauthd rm -fr /var/run/saslauthd
为了激活 saslauthd,现在我们必须编辑 /etc/default/saslauthd . 移除在 START=yes的#, 并 增加一行 PARAMS="-m /var/spool/postfix/var/run/saslauthd":
# This needs to be uncommented before saslauthd will be run automatically
START=yes
PARAMS="-m /var/spool/postfix/var/run/saslauthd"
# You must specify the authentication mechanisms you wish to use.
# This defaults to "pam" for PAM support, but may also include
# "shadow" or "sasldb", like this:
# MECHANISMS="pam shadow"
MECHANISMS="pam"
最后必须编辑 /etc/init.d/saslauthd,将这一行
dir=`dpkg-statoverride --list $PWDIR`
改成
#dir=`dpkg-statoverride --list $PWDIR`
在文件的开头,改变变量 PWDIR 和 PIDFILE,增加变量dir
PWDIR="/var/spool/postfix/var/run/${NAME}" PIDFILE="${PWDIR}/saslauthd.pid" dir="root sasl 755 ${PWDIR}"
/etc/init.d/saslauthd现在应该是这样子了:
#!/bin/sh -e
NAME=saslauthd
DAEMON="/usr/sbin/${NAME}"
DESC="SASL Authentication Daemon"
DEFAULTS=/etc/default/saslauthd
PWDIR="/var/spool/postfix/var/run/${NAME}"
PIDFILE="${PWDIR}/saslauthd.pid"
dir="root sasl 755 ${PWDIR}"
createdir() {
# $1 = user
# $2 = group
# $3 = permissions (octal)
# $4 = path to directory
[ -d "$4" ] || mkdir -p "$4"
chown -c -h "$1:$2" "$4"
chmod -c "$3" "$4"
}
test -f "${DAEMON}" || exit 0
# Source defaults file; edit that file to configure this script.
if [ -e "${DEFAULTS}" ]; then
. "${DEFAULTS}"
fi
# If we're not to start the daemon, simply exit
if [ "${START}" != "yes" ]; then
exit 0
fi
# If we have no mechanisms defined
if [ "x${MECHANISMS}" = "x" ]; then
echo "You need to configure ${DEFAULTS} with mechanisms to be used"
exit 0
fi
# Add our mechanimsms with the necessary flag
PARAMS="${PARAMS} -a ${MECHANISMS}"
START="--start --quiet --pidfile ${PIDFILE} --startas ${DAEMON} --name ${NAME} -- ${PARAMS}"
# Consider our options
case "${1}" in
start)
echo -n "Starting ${DESC}: "
#dir=`dpkg-statoverride --list $PWDIR`
test -z "$dir" || createdir $dir
if start-stop-daemon ${START} >/dev/null 2>&1 ; then
echo "${NAME}."
else
if start-stop-daemon --test ${START} >/dev/null 2>&1; then
echo "(failed)."
exit 1
else
echo "${DAEMON} already running."
exit 0
fi
fi
;;
stop)
echo -n "Stopping ${DESC}: "
if start-stop-daemon --stop --quiet --pidfile "${PIDFILE}" \
--startas ${DAEMON} --retry 10 --name ${NAME} \
>/dev/null 2>&1 ; then
echo "${NAME}."
else
if start-stop-daemon --test ${START} >/dev/null 2>&1; then
echo "(not running)."
exit 0
else
echo "(failed)."
exit 1
fi
fi
;;
restart|force-reload)
$0 stop
exec $0 start
;;
*)
echo "Usage: /etc/init.d/${NAME} {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
重新启动saslauthd
/etc/init.d/saslauthd start
现在可以检查 SMTP-AUTH 和 TLS 是否工作正常:
telnet localhost 25
你已经建立一个到postfix邮件服务器的连接
ehlo localhos
如果你看到
250-STARTTLS
和
250-AUTH
那么就OK了
键入
quit
返回到系统shell
如果你想用POP3/IMAP服务,带Maildir支持的(如果你不想用,那么就用传统的Unix mailbox格式),你就可以安装Courier-IMAP/Courier-IMAP-SSL(IMAPs运行在993端口)和Courier- POP3/Courier-POP3-SSL(POP3s 运行在 995端口)。要不,你可以用Apache的配置来处理
apt-get install courier-imap courier-imap-ssl courier-pop courier-pop-ssl配置时,回答 NO
ipopd 和 UW-IMAP 将被替换
然后,配置Postfix 传递Email给用户的 Maildir*:
postconf -e 'home_mailbox = Maildir/' postconf -e 'mailbox_command =' /etc/init.d/postfix restart注意 如果你想用ISPConfig用procmail作必要配置,你不必作上面的。但是请你激活Maildir,在ISP的的web管理界面Management -> Settings -> EMail
安装
apt-get install apache2 apache2-doc
apt-get install libapache2-mod-php4 libapache2-mod-perl2 php4
php4-cli php4-common php4-curl php4-dev
php4-domxml php4-gd php4-imap php4-ldap php4-mcal php4-mhash
php4-mysql php4-odbc php4-pear php4-xslt curl
libwww-perl imagemagick (写在一行命令里,因为这些是有依赖关系的)
编辑/etc/apache2/apache2.conf,将
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml
改成
DirectoryIndex index.html index.htm index.shtml index.cgi index.php index.php3 index.pl index.xhtml
编辑/etc/mime.types 注释掉下面这些行:
#application/x-httpd-php phtml pht php
#application/x-httpd-php-source phps
#application/x-httpd-php3 php3
#application/x-httpd-php3-preprocessed php3p
#application/x-httpd-php4 php4
编辑/etc/apache2/mods-enabled/php4.conf,注释掉下面这些行:
<IfModule mod_php4.c>
# AddType application/x-httpd-php .php .phtml .php3
# AddType application/x-httpd-php-source .phps
</IfModule>
编辑 /etc/apache2/ports.conf ,增加 Listen 443:
Listen 80
Listen 443
现在,我们必须激活一些模块(SSL,rewrite,suexec):
cd /etc/apache2/mods-enabled
ln -s /etc/apache2/mods-available/ssl.conf ssl.conf
ln -s /etc/apache2/mods-available/ssl.load ssl.load
ln -s /etc/apache2/mods-available/rewrite.load rewrite.load
ln -s /etc/apache2/mods-available/suexec.load suexec.load
ln -s /etc/apache2/mods-available/include.load include.load
重启Apache:
/etc/init.d/apache2 restart
安装
apt-get install proftpd
配置时,选择 standalone
为安全的原因,你必须增加下面的行到 /etc/proftpd.conf:
DefaultRoot ~
IdentLookups off
ServerIdent on "FTP Server ready."
就是屏蔽掉版本信息和限制用户在自己的目录
重启proftpd
/etc/init.d/proftpd restart
安装
apt-get install webalizer
配置时回答
<- /var/www/webalizer
<- Usage Statistics for
<- /var/log/apache/access.log.1
如果你想将服务器的系统时钟于NTP服务器同步,你可以增加下面的一行到/var/spool/cron/crontabs/root (如果文件不存在,请创建一个 touch /var/spool/cron/crontabs/root)
# update time with ntp server 0 3,9,15,21 * * * /usr/sbin/rdate 128.2.136.71 | logger -t NTP然后运行:
chmod 600 /var/spool/cron/crontabs/root /etc/init.d/cron restart为了反垃圾邮件,我们要安装一些Perl 模块,用Perl Shell来安装很方便
以root登录,运行下面的命令开始Perl Shell:
perl -MCPAN -e shell如果这是你第一次运行Perl Shell,那么你会被问几个问题。大多数情况下,默认的回答就行了
请注意: 如果在你的系统中运行有防火墙,请先关掉它。这样可让Perl Shell比较快地取得必要的模块。完成之后再打开防火墙
用Perl Shell较之其他两种方法的最大好处,就是安装新模块时候,能够很好地处理依赖关系:也就是说,当你安装一个模块时,如果需要预先安装什么模块,她会自动提示你安装,你必须回答YES
运行下面的命令安装 SpamAssassin所需要的模块:
install HTML::Parser install DB_File install Net::DNS (当提示你是否要测试时,请选择no,这个过程太长了,不值得) q (退出perl shell)如果一个模块已经安装,我们会得到类似于下面的信息:
HTML::Parser is up to date.成功安装一个模块会出现下面的信息:
/usr/bin/make install -- OK请访问
http://www.linuxsir.org
http://www.debian.org
获取详细信息
如果你想在suExec下运行CGI脚本,你应该指定/var/www作为ISPConifg建立websites的home目录,因为 Debian的suExec是用/var/www作为Doc_Root 来编译的。运行/usr/lib/apache2/suexec2 -V,会产生如下输出:
-D AP_DOC_ROOT="/var/www"
-D AP_GID_MIN=100
-D AP_HTTPD_USER="www-data"
-D AP_LOG_EXEC="/var/log/apache2/suexec.log"
-D AP_SAFE_PATH="/usr/local/bin:/usr/bin:/bin"
-D AP_UID_MIN=100
-D AP_USERDIR_SUFFIX="public_html"
为了在安装时选择/var/www 作为 站点的home目录,当问你选择什么安装模式时,请选择专家模式
Please select the installation mode.In expert mode
1)standard
2)expert
Your Choice:2
在后续的安装过程中,你会被问道 /home/www是你的默认的建立站点的目录,回答n,然后填入 /var/www
提示:一些系统文件会替代,因为要作一些调整
可能导致named.conf和postfix中一些条目丢失.
重要:ISPConfig只适合全新安装,如果你的站点已经有很多站点,而想换一个控制面板的话,是不行的
以root登录,解压缩ISPConfig
tar xvfz ISPConfig*.tar.gz
进入install_ispconfig:
cd install_ispconfig
在这个目录里,请检查dist.txt文件,看看有关于你自己的Linux发行版的一些值是否正确 (dist.txt的值是 和 没有修改过的标准版本的值一致的.如果你要改动其中的一些值,请保持dist.txt 的文件格式不变。如果是从上面一直安装下来,不需要修改的)
然后运行安装程序
./setup
安装程序现在开始编译一个支持PHP5的Apache,它将运行在81端口。这个Apache是ISPConfig需要的,它不会影响到已经安装好的apche2
重要: 确认你已经安装了 gcc, flex 和其他工具 ,这些东西是编译所必须的。你还必须安装MySQL 头文件,它来自于mysql-devel, mysql-dev, libmysql-devel 或者类似的其他东西. 否则,PHP5不能编译,ISPConfig的安装将停止。
当ISPConfig Apache建立好之后, 一个定制的SSL 认证文件也建立了. 所以你会被问几个问题,你可以接受默认的值,或者填入新的值,这都是可以的。
在第7步,"Encrypting RSA private key of CA with a pass phrase for security [ca.key]" 和第8步,"Encrypting RSA private key of SERVER with a pass phrase for security [server.key]" 的证书建立过程,你被问到是否 需要加密 respective key 请选择n. 否则,你在重启ISPConfig时会要一个密码,而在Web下是无法输入的。
如果编译失败,安装将会停止,所有的已经编译了的文件会被删除。从错误信息中,你应该可以得到失败的原因 (一般是 什么包没有安装,比如MySQL的头文件),解决这些问题之后,可以重新运行 ./setup
编译成功之后,需要进行胚子
选择ISPConfig界面的默认语言 然后你必须接受BSD的license 选择安装模式:standard / expert 标准模式,就是发行版默认的标准设置(没有改变程序的安装路径) 专家模式,改变了配置文件的位置或者Log的位置 除非你因为要运行suEXEc的CGI,你还是使用标准模式为好
如果你安装失败了,在解决好失败的问题之后,请重新解压缩ISPConfig后安装
你可能需要回答的问题
Please enter your MySQL server: E.G. localhost Please enter your MySQL user: E.G. root Please enter your MySQL password: Your MySQL password Please enter a name for the ISPConfig database: E.g. ispconfigdb Please enter the IP address of the ISPConfig web: E.g. 192.168.0.1 Please enter the host name: E.g. www Please enter the domain: E.g. xyz.de
请选择访问ISPConfig 系统界面的协议 (http 或者 https (SSL 加密))
好了,现在你可以 用户amin 密码admin 登录系统
自由广告区 |
分类导航 |
邮件新闻资讯: IT业界 | 邮件服务器 | 邮件趣闻 | 移动电邮 电子邮箱 | 反垃圾邮件|邮件客户端|网络安全 行业数据 | 邮件人物 | 网站公告 | 行业法规 网络技术: 邮件原理 | 网络协议 | 网络管理 | 传输介质 线路接入 | 路由接口 | 邮件存储 | 华为3Com CISCO技术 | 网络与服务器硬件 操作系统: Windows 9X | Linux&Uinx | Windows NT Windows Vista | FreeBSD | 其它操作系统 邮件服务器: 程序与开发 | Exchange | Qmail | Postfix Sendmail | MDaemon | Domino | Foxmail KerioMail | JavaMail | Winwebmail |James Merak&VisNetic | CMailServer | WinMail 金笛邮件系统 | 其它 | 反垃圾邮件: 综述| 客户端反垃圾邮件|服务器端反垃圾邮件 邮件客户端软件: Outlook | Foxmail | DreamMail| KooMail The bat | 雷鸟 | Eudora |Becky! |Pegasus IncrediMail |其它 电子邮箱: 个人邮箱 | 企业邮箱 |Gmail 移动电子邮件:服务器 | 客户端 | 技术前沿 邮件网络安全: 软件漏洞 | 安全知识 | 病毒公告 |防火墙 攻防技术 | 病毒查杀| ISA | 数字签名 邮件营销: Email营销 | 网络营销 | 营销技巧 |营销案例 邮件人才:招聘 | 职场 | 培训 | 指南 | 职场 解决方案: 邮件系统|反垃圾邮件 |安全 |移动电邮 |招标 产品评测: 邮件系统 |反垃圾邮件 |邮箱 |安全 |客户端 |