diff options
author | Kiriyama Kazuhiko <kiri@FreeBSD.org> | 2001-08-25 09:17:58 +0000 |
---|---|---|
committer | Kiriyama Kazuhiko <kiri@FreeBSD.org> | 2001-08-25 09:17:58 +0000 |
commit | 7fbc9cb45c5d2fd55605142b316dcbb02106a761 (patch) | |
tree | c0a350ee33eed016f77c4a7e4eb51de12842e085 /mail/mew2/files/message.sh | |
parent | Do not overwrite existen drwebsmf.sh on install (diff) |
Mew2 for Emacs20 port now committed on reposit copied from
mail/mew.
Notes
Notes:
svn path=/head/; revision=46869
Diffstat (limited to 'mail/mew2/files/message.sh')
-rw-r--r-- | mail/mew2/files/message.sh | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/mail/mew2/files/message.sh b/mail/mew2/files/message.sh index a709991a5b4f..c4941cbfed1b 100644 --- a/mail/mew2/files/message.sh +++ b/mail/mew2/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 |