summaryrefslogtreecommitdiff
path: root/mail/mew3/files/message.sh
blob: c4941cbfed1b5b73d6f10827541140f3b1fd416a (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
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
 
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 "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
	;;
    xemacs21*)
	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 "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
	;;
esac