diff options
author | Kiriyama Kazuhiko <kiri@FreeBSD.org> | 2001-08-25 08:11:07 +0000 |
---|---|---|
committer | Kiriyama Kazuhiko <kiri@FreeBSD.org> | 2001-08-25 08:11:07 +0000 |
commit | cfe78098839b5bf6ed224f2738d66cc91c68253d (patch) | |
tree | ef7ca96dc726163a8d01c911ef926ab29d87aff5 /mail/mew3/files/message.sh | |
parent | I've misset category. Change CATEGORIES editors -> mail. (diff) |
Repositry copy mail/mew -> mail/mew2-emacs20.
Notes
Notes:
svn path=/head/; revision=46860
Diffstat (limited to 'mail/mew3/files/message.sh')
-rw-r--r-- | mail/mew3/files/message.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mail/mew3/files/message.sh b/mail/mew3/files/message.sh new file mode 100644 index 000000000000..a709991a5b4f --- /dev/null +++ b/mail/mew3/files/message.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +if [ -z "${EMACS_SETUPEL}" ]; then + 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")) * +* * +************************************************************************* +EOF +else + 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")) * +* * +************************************************************************* +EOF +fi |