aboutsummaryrefslogtreecommitdiff
path: root/mail/mew/files/message.sh
blob: a709991a5b4f8353cb76b836a2e46a30b1eb2dc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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