freebsd-ports/mail/mew/files/message.sh
Shigeyuki Fukushima d9ab5e69e8 Update to 1.94.1.
PR:		ports/15627
Submitted by:	KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
2000-01-04 14:29:34 +00:00

26 lines
1.4 KiB
Bash

#!/bin/sh
if [ -z "${SITE_STARTUP_FILE}" ]; then
${CAT} <<EOF > ${WRKTMPDIR}/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}/MESSAGE
*************************************************************************
* You must set at least following elisps to your own dot.emacs file: *
* *
* (require 'mew-${EMACS_PORT_NAME}-startup) *
* (autoload 'mew "mew" nil t) *
* (autoload 'mew-send "mew" nil t) *
* (setq mew-mail-domain-list '("Name_Server_Domain_Name")) *
* *
*************************************************************************
EOF
fi