[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Multiple IMAP accounts and wl-fcc
- To: wl-en <wl-en@lists.airs.net>
- Subject: Multiple IMAP accounts and wl-fcc
- From: Suresh Kumar <sureshkumar.pp@gmail.com>
- Date: Tue, 04 May 2010 14:39:03 +0530
- 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:user-agent:mime-version:content-type; bh=dbJ8RzuwyOlTG3KmZO46v59rOs8TSrejiPpgbBdcFHo=; b=uLhBoxwm3yi33/fU3g+rTs7LmMPTX/45DQLRw4NdPjBGrrga4cotnMR20c5hiuCoKE 55S9W87Azv9365w15e5JCfkGG76YU39uQ7lzQKfgjV1U/mwikOMeNgVpECJ3NrgIfRcJ FeUQ085NpzGTQMnpuxuWC4QROiA/0/EaS9CQg=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:user-agent:mime-version :content-type; b=Kigtsu2u/qjINazs8n2Mej7HTWfXOlnEyUhGKg4ON8+QfNP8o6ShP894ujhgwV/pOg iMVrutcARSWHgwODCgIjihAHV8N/3V4FoEa5Yug/scl+GxmBfQj/lk5GqCb3tEtFgIMp UOhKcfN+9xOCbAuzqLVkUFrKcYQqbdBtMHxN0=
- 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>
- Reply-to: wl-en@lists.airs.net
- User-agent: Wanderlust/2.15.7 (Almost Unreal) Emacs/23.1 Mule/6.0 (HANACHIRUSATO)
Hi,
I have multiple IMAP accounts set up with Wanderlust and is working
find so far.
I maintain "Sent" folder in the respective mail servers, i.e., not on
the local machine, so I want the sent messages to be saved based on
the IMAP account currently I am dealing with.
I am trying to achieve this by setting wl-fcc in wl-draft-config-alist
but no success so far. wl-fcc is set to proper value(C-h v) in the
draft buffer but there are no messages in the sent folder (and also
FCC doesn't appear in the header field). But setting wl-fcc globally
works fine but will not be suitable for me.
Any suggestion?
My wl-draft-config-alist
(for now only "company" template has wl-fcc defined)
,----
| wl-draft-config-alist
| '((reply
| "To: .*\\(abc@cc.hut.fi\\)"
| (template . "tkk"))
| (reply
| "To: .*\\(.*@cs.hut.fi\\)"
| (template . "tkk"))
| (reply
| "To: .*\\(abc@xyzcompany.com\\)"
| (template . "xyzcompany"))
| (reply
| "To: .*\\(xyz@gmail.com\\)"
| (template . "gmail"))
| ((string-match ".*in-exch01\\.x\\.y.*" wl-draft-parent-folder)
| (template . "company"))
| ((string-match "" wl-draft-parent-folder)
| (template . "gmail"))
| )
|
| wl-template-alist
| '(("gmail" ; Gmail
| (wl-from . "xyz <xyz@gmail.com>")
| ("From" . wl-from)
| (wl-smtp-connection-type . 'starttls)
| (wl-smtp-posting-port . 587)
| (wl-smtp-authenticate-type . "plain")
| (wl-smtp-posting-user . "xyz")
| (wl-smtp-posting-server . "smtp.gmail.com")
| (wl-local-domain . "gmail.com"))
| ("company"
| (wl-from . "xyz <xyz@xyzcompany.com>")
| ("From" . wl-from)
| (wl-fcc . "%Sent Items:xyz/clear@in-exch01.x.y:143")
| (wl-fcc-force-as-read . t)
| (wl-smtp-connection-type . nil)
| (wl-smtp-posting-port . nil)
| (wl-smtp-authenticate-type . "login")
| (wl-smtp-posting-user . "xyz")
| (wl-smtp-posting-server . "in-exch01.x.z")
| (wl-local-domain . "xyz.com"))
| ("tkk"
| (wl-from . "xyz <xyz@cc.hut.fi>")
| ("From" . wl-from)
| (wl-smtp-connection-type . nil)
| (wl-smtp-posting-port . 25)
| (wl-smtp-authenticate-type . nil)
| (wl-smtp-posting-user . "xyz")
| (wl-smtp-posting-server . "smtp.hut.fi")
| (wl-local-domain . "hut.fi")))
`----
Thanks,
Suresh