| Title: | *OLD* ALL-IN-1 (tm) Support Conference |
| Notice: | Closed - See Note 4331.l to move to IOSG::ALL-IN-1 |
| Moderator: | IOSG::PYE |
| Created: | Thu Jan 30 1992 |
| Last Modified: | Tue Jan 23 1996 |
| Last Successful Update: | Fri Jun 06 1997 |
| Number of topics: | 4343 |
| Total number of notes: | 18308 |
*** MJU in report mode ***
Hi,
A customer is about to upgrade to ALL-IN-1 V3.0 and will be implementin
the mail janitor PASS. What they have asked is whether it is possible
to run the janitor in `report' mode ie. perform a normal processing
run but report back to manager what/how many messages would be moved
to wastebasket if this was a live run. To take it one stage further,
an enhancement they would like to see is for this report to indicate
what disk space would be recovered if all messages moved are subsequent
deleted from wastebasket (hence OA$SHARE).
Will/should all this be possible by customising ? I don't have a kit
to hand and can't rememeber if an .exe is involved or whether its all
scripts and command files. Anybody done anything similar to give an
idea of what works involved ?
Regards,
John
(cross-posted in EOASSETS conference)
| T.R | Title | User | Personal Name | Date | Lines |
|---|---|---|---|---|---|
| 1497.1 | Script customization | UTRTSC::SCHOLLAERT | Alfa ready | Thu Sep 24 1992 18:51 | 33 |
Hi John,
Should be possible.
Refiling it done by SM_USER_MJU.SCP like this.....
!
! Process documents in the OUTBOX folder
!
for CAB$ with .FOLDER eqs #OUTBOX and -
.MODIFIED_NBS:8 lt #CHECK_DATE do -
compute #NUMBER_OUTBOX = #NUMBER_OUTBOX + 1 -
\\get #MJUDOC = .FOLDER:30 .DOCNUM -
\\GET #VMS_FILE = .FILENAME -
\\get #title = .title -
\\GET #TMP="TMP" -
\\cab delete_or_refile #MJUDOC , #WSTBSKT -
\\GET #TEXT="Refiling doc from: " #MJUDOC -
\\.TEXT #TEXT -
\\GET #TEXT=" With file name: " #VMS_FILE -
\\.TEXT #TEXT -
\\GET #TEXT=" With title: " #TITLE -
\\.TEXT #TEXT
GET #TEXT="A total of " #NUMBER_OUTBOX -
" OUTBOX document(s) refiled for " #USER
.text #text
!
Regards,
Jan
| |||||
| 1497.2 | Wrong script - MJU has changed in V3.0 | SIOG::T_REDMOND | Thoughts of an Idle Mind | Thu Sep 24 1992 19:02 | 12 |
The only problem is that SM_USER_MJU.SCP is not used in the MJU for
ALL-IN-1 V3.0....
MJU for V3.0 has been rewritten. It's now part of the EW housekeeping
procedure (an extension of the EW housekeeping procedure rather).
But I see no reason why something like a system symbol couldn't be set
to stop the CABINET REFILE_DOCUMENT ,OA$WASTEBASKET being executed.
The message would still be generated and sent to the user so in effect
you'd be running MJU in report mode.
Tony
| |||||