After joining the association, the member can enjoy the free service provided by the association and join activities organized by the association.
Currently, the free service include a mailbox and subscription to class mailing list.
Free membership | 10 Mbyte mailbox |
CS Alumni Association's Home Page | http://www.hkucs.org/ |
Your Personal Home Page | http://alumni.hkucs.org/~username/ |
FTP Server | ftp.cs.hku.hk |
Outgoing (SMTP) Server | provided by your own ISP |
IMAP Server | imap.hkucs.org |
POP Server | pop.hkucs.org |
News Server | news.hkucs.org |
alumni.hkucs.org is the testbed UNIX server for members who have subscribed to the contribution option.
chmod o+x <your_cgi_script.cgi>
http://www.hkucs.org/~yourname/your_cgi_script.cgi
/usr/bin/perlBack to top
If you are not subscribing to the contribution option, you only have 10MB disk space for your mailbox, and 0MB disk space for your home directory. Since mail folders are stored under your home directory, you may subscribe to the contribution option to get 50MB disk space for your home directory. Besides, you mailbox will be upgraded to 50MB also. You may click here and login to verify your current disk usage.
Back to topSpamAssassin has been installed on Alumni's mail server. You may download this mail_filter.zip file (which contains the .forward and .procmailrc files) and extract it to your home directory.
.forward file contains the following line which invokes procmail
"|IFS=' ' && exec /usr/local/bin/procmail -f- || exit 75 #user"
.procmailrc file contains the lines below which defines in which folder the spam mails should be kept. By default, all spam mails will be stored in the "caughtspam" folder.
:0fw | /usr/local/bin/spamc :0: * ^X-Spam-Status: Yes mail/caughtspam
It's important that your procmailrc file not be writable by anyone but you, so run chmod 600 .procmailrc at the unix shell prompt.
To reduce false alarms on Chinese email, make a directory ~/.spamassassin and create a file ~/.spamassassin/user_prefs with the following content:
# Speakers of Asian languages, like Chinese, Japanese and Korean, will almost # definitely want to uncomment the following lines. They will switch off some # rules that detect 8-bit characters, which commonly trigger on mails using CJK # character sets, or that assume a western-style charset is in use. # score HEADER_8BITS 0 score HTML_COMMENT_8BITS 0 score SUBJ_FULL_OF_8BITS 0 score UPPERCASE_25_50 0 score UPPERCASE_50_75 0 score UPPERCASE_75_100 0Back to top