Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #98998

Re: How to create a folder using IMAPLib?

From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Subject Re: How to create a folder using IMAPLib?
Date 2015-11-19 07:35 +1100
Message-ID <mailman.426.1447878940.16136.python-list@python.org> (permalink)
References <564CD930.9000005@cajuntechie.org>

Show all headers | View raw


On Thu, Nov 19, 2015 at 7:01 AM, Anthony Papillion
<anthony@cajuntechie.org> wrote:
> I'm writing a program to help migrate mail from one host to another
> with a few special circumstances. I'm able to get a list off of the
> source IMAP server using the .list() command but I'm not quite sure
> how to create a folder on the target machine.
>
> Does anyone know how to create a folder using IMAPlib?

They're called "mailboxes", which I'll admit is not the most obvious
name, but imaplib is following the IMAP spec here. You can create them
with .create() and delete them with .delete().

ChrisA

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: How to create a folder using IMAPLib? Chris Angelico <rosuav@gmail.com> - 2015-11-19 07:35 +1100

csiph-web