Installation guide
<CFIMAP ACTION="MOVEMAIL"
CONNECTION="name"
FOLDER="toplevelfoldername"
DESTFOLDER="toplevelfoldername"
MESSAGELIST="list of IDs">
The message list is either a single message ID or a comma-separated list of IDs.
4.5.7.9 Deleting a Folder
Specifying ACTION=”DELETEFOLDER” will delete a folder from the mail server, including
all of its contents (mail messages):
<CFIMAP ACTION="DELETEFOLDER"
CONNECTION="name"
FOLDER="fullfoldername">
The folder name is the complete path to the folder. This is a very powerful action and
should be used with extreme care, as it can remove all messages and folders from the
mail server.
4.5.7.10 Renaming a Folder
Specifying ACTION=”RENAMEFOLDER” will rename a folder on the mail server:
<CFIMAP ACTION="RENAMEFOLDER"
CONNECTION="name"
OLDFOLDER="fullfoldername"
NEWFOLDER="fullfoldername">
The folder name is the complete path to the folder.
4.5.7.11 Sending Mail Messages
Sending email messages is done using the CFMAIL tag, not CFIMAP. However,
BlueDragon has added two new attributes to the CFMAIL tag to allow you to store sent
mail in an IMAP server folder. See the section on the
CFMAIL tag for details.
4.5.8 CFPAUSE
CFPAUSE is a new tag introduced by BlueDragon to assist in debugging CFML pages. The
CFPAUSE tag allows you to pause the execution of a page for a specified number of
seconds. The
interval attribute is required and must specify an integer value:
<CFPAUSE INTERVAL=”seconds to pause”>
BlueDragon 6.1 CFML Compatibility and Reference Guide 32