On Sat, 30 Mar 2002 11:04:33 -0600, Rick Sanders wrote:
> The script fetches messages from one IMAP server and
> concatentates them together, then it does an APPEND to
> the other server

That isn't how you do MULTIAPPEND.  Read:
        draft-crispin-imap-multiappend-05.txt
for the specification of how you do it.

> But this results in a single message.

That's what would happen if you appended all the messages together in a single
literal instead of doing what the MULTIAPPEND document says you must do.

> It's as if a delimiter
> needs to be inserted between the message but nothing that I've
> tried so far helps.

Hint: each message gets its own flags, internaldate, and literal string.  So,
instead of sending flags, internaldate, and a literal string containing of all
the messages, you must send flags, internaldate, and literal string for each
message.

Reply via email to