What is the format for the array for the parameter newclusterreplicaarray$ in the MoveMailUser method of the NotesAdministrationProcess class?

Hi, I am trying to use the MoveMailUser and would like to add the user’s mail file to a mail server cluster. The text from the help db for the MoveMailUser method for the newclusterreplicaarray says:

“Array of type String. Optional. Replicas of the mail file in the same cluster as the new home server. The array must consist of pairs of elements. The first element of the pair specifies the name of a server in the same cluster as the new home server. The second element specifies the path in the same form as the new home server mail path.”

Is a “pair of elements” a two-dimensional array? Or is it two values separated by a “:”? Can someone clarify?

Thanks,

Eric

Subject: What is the format for the array for the parameter newclusterreplicaarray$ in the MoveMailUser method of the NotesAdministrationProcess class?

Try this:

Dim newClusterArr(1) as string

newClusterArr(0) =

newClusterArr(1) = (mail)"

BRGDS

/M

Subject: RE: If you’re in a cluster…

If you use the NotesAdministrationProcess.moveMailUser method and you need to create clustered replicas on more than one server:

Dim newClusterArr(1, 1) as string

newClusterArr(0, 0) = “MailB/myCert” 'Server Name

newClusterArr(1, 0) = "mail1" '

newClusterArr(0, 1) = “MailC/myCert” 'Server Name

newClusterArr(1, 1) = "mail1" '

this note is useful if you are in a clustered environment and you have a user’s eMail on their home server and also on 2 other servers in the cluster.