diff options
Diffstat (limited to 'mail/mew3/files/message.sh')
-rw-r--r-- | mail/mew3/files/message.sh | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/mail/mew3/files/message.sh b/mail/mew3/files/message.sh index a709991a5b4f..c4941cbfed1b 100644 --- a/mail/mew3/files/message.sh +++ b/mail/mew3/files/message.sh @@ -1,26 +1,37 @@ #!/bin/sh -if [ -z "${EMACS_SETUPEL}" ]; then - cat <<EOF > ${WRKTMPDIR}/pkg-message +case ${EMACS_PORT_NAME} in + emacs20) + cat <<EOF > ${WRKTMPDIR}/pkg-message ************************************************************************* * You must set at least following elisps to your own dot.emacs file: * * * * (autoload 'mew "mew" nil t) * * (autoload 'mew-send "mew" nil t) * -* (setq mew-mail-domain-list '("Name_Server_Domain_Name")) * +* (setq mew-mail-domain "domain of e-mail address") * +* (setq mew-pop-server "your POP server") ;; if not localhost * +* (setq mew-smtp-server "your SMTP server") ;; if not localhost * +* (setq mew-prog-pgpkey "fetch") ;; for PGP use * +* (setq mew-prog-pgpkey-arg '("-q" "-o" "-"));; for PGP use * * * ************************************************************************* EOF -else - cat <<EOF > ${WRKTMPDIR}/pkg-message + ;; + xemacs21*) + cat <<EOF > ${WRKTMPDIR}/pkg-message ************************************************************************* * You must set at least following elisps to your own dot.emacs file: * * * -* (require '`basename ${EMACS_SETUPEL} .el`) * * (autoload 'mew "mew" nil t) * * (autoload 'mew-send "mew" nil t) * -* (setq mew-mail-domain-list '("Name_Server_Domain_Name")) * +* (setq mew-mail-domain "domain of e-mail address") * +* (setq mew-pop-server "your POP server") ;; if not localhost * +* (setq mew-smtp-server "your SMTP server") ;; if not localhost * +* (setq mew-icon-directory "icon directory") ;; if using XEmacs * +* (setq mew-prog-pgpkey "fetch") ;; for PGP use * +* (setq mew-prog-pgpkey-arg '("-q" "-o" "-"));; for PGP use * * * ************************************************************************* EOF -fi + ;; +esac |