From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <21f15de8b3a797760938ffb7b64886fd@quanstro.net> From: erik quanstrom Date: Sun, 8 Feb 2009 19:57:35 -0500 To: akumar@mail.nanosouffle.net, 9fans@9fans.net MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] UPAS, IMAP, and SMTP Topicbox-Message-UUID: 9a0506b4-ead4-11e9-9d60-3106f5b1d025 > Using upas/fs -f /imaps/imap.gmail.com I can access my GMail > Inbox. The mail structure is posted in /mail/fs/mbox > However, there may be local mail as well as other labels (i.e., folders) > in GMail that I would want to access -- it seems that specifying > a new folder at GMail, i.e., > upas -f /imaps/imap.gmail.com/user@mail.example.com/label > replaces the /mail/fs/mbox structure with the mail at this new place. > Is there any way to have these co-exist -- i.e., /mail/fs/mbox for > the original, and /mail/fs/label for subsequent labels/folders I want > to access? yes. you can have as many mailboxes open as you wish. once upas/fs is running, you can u = user@mail.example.com l = label echo open /imaps/imap.gmail.com/$u/$l $l>/mail/fs/ctl in fact if labels is a list you could for(i in $labels) echo open /imaps/imap.gmail.com/$u/$i $i>/mail/fs/ctl side note: upas/nedmail's rules for when to open an already open folder confused me a little bit. i changed the nupas version to prefer an already-open folder over one in /mail/box/$user to ease using a secondary imap mailbox. - erik