[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Wanderlust beginner part 2
- To: wl-en@lists.airs.net
- Subject: Re: Wanderlust beginner part 2
- From: Erik Hetzner <ehetzner@gmail.com>
- Date: Tue, 20 Apr 2010 11:25:16 -0700
- Delivered-to: wl-en@lists.airs.net
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:references:user-agent:mime-version:content-type :content-transfer-encoding; bh=37zUMRS0X7VKSli2PNx3aAhzVF5fzPcOaAqVm499jA4=; b=JWLML08nac+S4V9720IkTpL7Yb6Ct7pxKROnwGP1kyrUZhxFRWYnT0GNPFkVifF2Ho ae9zTbMWcw2PYg/ezMu2SteFt6x3aaNDd5waoYYqB/9wQO81ZPzFzZE65xBKZKrE3UsA ViDuIMs1XmRFZp9iM0Fe95BkxFsys11995Uw4=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:references:user-agent :mime-version:content-type:content-transfer-encoding; b=vUZa5Ql4c+s00Qc/Y0acxQHU69+r2CKBs8yQGv5C4REjqyYPPleMgo+Wooqdlc+aHX UvaVQi9RN1e/LR/H/2ODMY0T5iuZXwRJDzrxRXfC2UePSniTUfkQyy9tjEfwoP2P6Jrg 0hCK5TwivhTAwlb4rN8b2u63YICLgu98dxQ/U=
- In-reply-to: <877ho29ooz.wl%simon@cliffestones.demon.co.uk>
- List-help: <mailto:wl-en-ctl@lists.airs.net?body=help>
- List-id: wl-en.lists.airs.net
- List-owner: <mailto:wl-en-admin@lists.airs.net>
- List-post: <mailto:wl-en@lists.airs.net>
- List-software: fml [fml stable 20011102.2100]
- List-unsubscribe: <mailto:wl-en-ctl@lists.airs.net?body=unsubscribe>
- References: <877ho29ooz.wl%simon@cliffestones.demon.co.uk>
- Reply-to: wl-en@lists.airs.net
- User-agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (Gojō) APEL/10.7 Emacs/22.2 (i486-pc-linux-gnu) MULE/5.0 (SAKAKI)
Hi Simon -
At Tue, 20 Apr 2010 15:35:40 +0100,
Simon Brown wrote:
> […]
>
> Secondly is it possible to represent IMAP folders as a hierachy? I
> have folders for archiving things on the IMAP server (%/) which I'd
> like to be able to open and close as and when I want to see the
> contents. Like what happens with the threading code. At the moment I'm
> just getting a flat list.
See here:
http://permalink.gmane.org/gmane.mail.wanderlust.general.japanese/6546
> Thirdly, is there an easy way to add signatures. The methods I've
> found so far are ridiculously complicated.
Lots of ways, unfortunately. Depends on the style of signature you
want. Here is my solution, which automatically adds a signature in a
separate text/plain part of a message at the end. This displays nicely
in WL & Thunderbird, at least; not so well in Outlook, where it is
hidden as an attachment.
;; [sig]
(setq signature-separator "")
(setq signature-insert-at-eof t)
(unless (assq 'signature wl-draft-config-sub-func-alist)
(wl-append wl-draft-config-sub-func-alist
'((signature . wl-draft-config-sub-signature))))
(defun wl-draft-config-sub-signature (content)
(require 'signature)
(let ((signature-file-name content))
(goto-char (mime-edit-content-end))
(mime-edit-insert-signature)))
(setq wl-draft-config-alist
`(((string-match "example.org" wl-draft-parent-folder)
[...]
(signature . ,(expand-file-name "~/.signature"))
)))
best,
Erik
Attachment:
pgpRr6X1xyxxC.pgp
Description: PGP signature