python - Is it possible to have two mailboxes(folders) with same name? -




i working on product have interact email servers (like zimbra, dovecot etc) through imap fetch emails etc.

i using python's imaplib library. connect email server account credentials , select mailbox (folder) through name.

now wondering whether possible have 2 mailboxes same name in account? if yes how go ?

question: unclear on this.

using select(mailbox=... dealing real folders.
therefore no duplicate possible.

imap4.select(mailbox=’inbox’, readonly=false)

select mailbox.
returned data count of messages in mailbox (exists response).
default mailbox 'inbox'.
if readonly flag set, modifications mailbox not allowed.





wiki

Comments

Popular posts from this blog

python - Read npy file directly from S3 StreamingBody -

python - Minimize function with Scipy minimize -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -