Tony Rolfe asked:
> I'll ask again, but I'll just get told "It's too difficult".
>
> 1. The ability to move a message from one user folder to another.
Now, I'm assuming that when you say "user folder," that you mean user account.
If you don't mean that, then ignore the rest of this message.
Still here? Are you sitting comfortably? Then I'll begin:
You will need to set up an rexx script. I have attached a copy to this message
(fingers crossed.) If it doesn't already exist, make a directory called "Rexx"
in the MD-2 program drawer. Put the rexx script in it.
You will have to make sure you have *rexxreqtools.library*. If not, it's on
Aminet.
You should now have an extra menu called "ARexx" and the new script should be
there. What this script should do, is allow you to import a message into the
MD-2 database.
So firstly, save the *whole message* to a text file. Top right hand corner of
the message reader window BTW.
Now you will have to delete the message fully ie delete, empty trash & cleanup
database. This is important & has to be done for this to work.
Select the user you wish the message to be transfered to. Now run the rexx
script. A file requester will appear. Select the file to import. If all has
gone according to plan, the message will appear as a new message in the PRIV
folder.
However, it will not retain the same date as the message was originally
received. If you want this maintained, change the system clock to this date
before doing any of this.
Hope this works. If it does, thanks should also go to Ian Armstrong who
provided me with the script via this ML.
Good luck.
--
------------------------------------------------
www.free4all.co.uk
-- Listar MIME Decryption --------------
-- Name : MailImport.mdrx
/* $VER: MailImport.mdrx 3.0 (02 AUG 97)
** by Charles Patterson <[EMAIL PROTECTED]>
** http://www.azstarnet.com/~midian/
**
** Description: Imports mail into Microdot-II from requester
**
** Requires: Microdot-II v0.198 () 1997 by Oliver Wagner)
** rexxreqtools.library 1.3 () 1992-94 Rafael D'Halleweyn)
**
** Instructions: Place in Microdot-II/Rexx path
** Adjust 'defpath' for your computer
** Run from Microdot-II ARexx menu
**
** --- Default path to import from: --- */
defpath = "Ram:"
OPTIONS RESULTS
IF ~SHOW('L','rexxreqtools.library') THEN
ADDLIB('rexxreqtools.library',0,-30,0)
filenames = RTFILEREQUEST(defpath,,'Select files','_Import','rtfi_flags =
freqf_multiselect|freqf_patgad rtfi_matchpat=~(.index)',files)
IF files THEN
DO n = 1 to files.count
MAILIMPORT files.n
END
EXIT
_____________________________________________________________
NetConnect mailing list. To unsubscribe, send an 'unsubcribe'
message to <[EMAIL PROTECTED]>