4.Fetchmail 
  由于用户很多(我的整个家庭)
,所以我决定使用fetchmail
。Linux 和 fetchmail把mail发送到接收 QMAIL的smtp port
。   安装应该没什么问题
,按以下步骤便行。 
fetchmailrc: 
poll PersonalMail.Germany.EU.net 
protocol pop3 
username myname 
paword mypaword 
# the next two lines do the trick for multidrop 
localdomai mydomain.de 
is * here 
# T2 of the fetchmail FAQ states that QMAIL needs this 
forcecr 
  5.exmh 
  这是我选择的mailer。我很喜欢它。 
  只存在一个麻烦----大多数的高级汇编TCL/TK包裹编译了
安全条款。而随着SuSE的出现,xserverrc在确保
安全的前提下解决了这个麻烦。 
#!/bin/sh 
# 
# move this file to ~/.xserverrc, if you don want to allow everybody to 
# get acce to your X-Server 
# 
if [ -x /usr/bin/keygen ]; then 
if [ ! -x /usr/bin/hostname -a ! -x /bin/hostname 
-a ! -x /usr/d/hostname ]; 
then 
echo "startx: can get my hostname - exiting" 
exit 1 
else 
host=`hostname` 
fi 
xauth add $host:0 . `/usr/bin/keygen` 
sleep 2 
xauth add $host/"unix":0 . `/usr/bin/keygen` 
exec X :0 -auth .Xauthority $* 
else 
exec X :0 $* 
fi 
  6.Procmail 
  QMAIL FAQ 有以下要求:
  In /.QMAIL add the line 
  | preline procmail 
  3.11per7 的版本改变了默认邮箱的一些内容。它以前在config.h文件中,而现在在src/authenticate.c文件中: 
  #define MAILOOLHOME "/Mailbox" /* watch the leading / */ 
  /* delivers to $HOME/Mailbox */ 
  我精简合并了一些comp.mail.mh 和 comp.mail.misc的内容放在procmailrc 文件中,感谢各位提出宝贵意见!