Re: Copy functio in imaplib

2005-02-22 Thread Max M
Raghul wrote:
What is message_set in the python documentation for copy in imaplib? Is
they referring message set  to the particular mail message in my inbox
or something else.
copy(   message_set, new_mailbox)
Copy message_set messages onto end of new_mailbox.
A sequence of numbers encoded as a string. In one of the forms:
'1,2,3,4' or '1:4'
The numbers can be either message sequence numbers or uids.
--
hilsen/regards Max M, Denmark
http://www.mxm.dk/
IT's Mad Science
--
http://mail.python.org/mailman/listinfo/python-list


Re: Copy functio in imaplib

2005-02-22 Thread Grant Edwards
On 2005-02-22, Raghul [EMAIL PROTECTED] wrote:

 What is message_set in the python documentation for copy in imaplib?

It's a list of message numbers.  The ones returned by a
SEARCH command.

 Is they referring message set to the particular mail message
 in my inbox or something else.

?

Have you read the IMAP RFC?

http://www.faqs.org/rfcs/rfc2060.html

-- 
Grant Edwards   grante Yow!  Are you mentally here
  at   at Pizza Hut??
   visi.com
-- 
http://mail.python.org/mailman/listinfo/python-list


Copy functio in imaplib

2005-02-21 Thread Raghul
What is message_set in the python documentation for copy in imaplib? Is
they referring message set  to the particular mail message in my inbox
or something else.

copy(   message_set, new_mailbox)
Copy message_set messages onto end of new_mailbox.

-- 
http://mail.python.org/mailman/listinfo/python-list