;;;-*- Mode:LISP; Package:ZWEI; Readtable:ZL; Base:10 -*- ;;; There are several pieces needed for ZMail to work properly. ;;; -------------------------------------------------------------------- ;;; First, pick a system to be your mailer -- the one you will receive ;;; mail from. This ZMAIL.INIT file is set up to talk to a Unix mailer ;;; system named "LMI-LURCH". ;;; -------------------------------------------------------------------- ;;; -------------------------------------------------------------------- ;;; In order for a LISPM to talk to a remote mailer system, there must ;;; be a valid CHAOS or SMTP protocol link between them. The parameter ;;; :DEFAULT-MAIL-MODE must then be either :CHAOS or :SMTP, ;;; respectively. The mail server must be on the right list -- ;;; :CHAOS-MAIL-SERVER-HOSTS or :SMTP-MAIL-SERVER-HOSTS, again in ;;; SITE.LISP. ;;; -------------------------------------------------------------------- ;;; -------------------------------------------------------------------- ;;; Second, set up ZMail variables. The commonly used ones are ;;; documented below. ;;; -------------------------------------------------------------------- ;;; *ZMAIL-STARTUP-FILE-NAME* ; This file is a BABYL.TEXT file. It indicates where your mail spool ; file is. It's also where ZMail ends up putting all your current ; mail. (LOGIN-SETQ *FROM-HOST* '"LMI-LURCH") (LOGIN-SETQ *FROM-USER-ID* '"keith") (LOGIN-SETQ *REQUIRE-SUBJECTS* ':BUG) (LOGIN-SETQ *ZMAIL-USUAL-MAIL-FILE-DIRECTORY* '"LMI-LURCH://usr//keith") (LOGIN-SETQ *ZMAIL-STARTUP-FILE-NAME* '"LMI-LURCH://usr//keith//mail.bb") (LOGIN-SETQ *OTHER-MAIL-FILE-NAMES* '("LURCH: //usr//keith//mbox" "LURCH: //usr//mail//keith" "it:keith;keith.mail"))