T.R | Title | User | Personal Name | Date | Lines |
---|
3550.1 | No switch, but scripts exist to do this | GUIDUK::MCKAY | Down another rat hole... | Thu Nov 18 1993 17:02 | 13 |
| I don't believe that there is a switch to do what you want to do. You
can write a script that is invoked upon the user entering ALL-IN-1 to
import any existing new vmsmail messages into ALL-IN-1. I am not
certain, but I think you also need to have the VMSMAILGATEWAY product.
We setup this automatic VMSMAIL import for my customer. The only
drawback is that once the user is in ALL-IN-1, any new VMSMAIL that is
received, must be manually imported (ala "V"). If this is what you
want to accomplish, I can post the script we use.
Regards,
Paul
|
3550.2 | Best to use SET FORWARD | BOOZER::MARTIN::BELL | Martin Bell, NETCC, Birmingham UK | Thu Nov 18 1993 17:20 | 23 |
| You could change the starting menu in their PROFIL records to be
EM V
...which will automatically import messages, but this is not the best
way for various reasons.
The BEST way is to perform a SET FORWARD command from VMSmail, but
you need Message Router and the VMSmail gateway running for this to
work.
Doing this for 200 users is no big deal, as you can write a command
file to do it from a privileged account!
To answer your question, there IS a flag, but that is the SET FORWARD
command! ALL-IN-1 does not have a "flag", because unless someone gives
it a prod, it doesn't know that there are any VMSmail messages to do
anything with.
hth,
mb
|
3550.3 | This is easy... | SCOTTC::MARSHALL | Spitfire Drivers Do It Topless | Thu Nov 18 1993 17:25 | 15 |
| Here's a script that, when run from a suitably privileged account, will
set up VMSmail forwarding for all your ALL-IN-1 users (assuming you have
MRGATE installed):
GET OA$DCL="MAIL"
FOR PROFIL WITH .MAIDES EQS "ALLIN1" OR .MAIDES EQS "ALL-IN-1" DO -
GET OA$DCL = "SET FORWARD/USER=" .VMSUSR " MRGATE::A1::" .USER
GET OA$DCL="EXIT"
^^
^^
If your ALL-IN-1 mailbox isn't called A1, then change this appropriately.
You can change the WITH clause to pick out any subset of users you want.
Scott
|