1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-11 23:25:17 +00:00
freebsd-ports/mail/mew/files/message.sh

27 lines
1.4 KiB
Bash
Raw Normal View History

#!/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