To automatically retrieve content from a repository, create a new connector job (a Fetch Task) by following these steps. The connector runs each fetch task automatically, based on the schedule that is configured in the configuration file.
To create a new Fetch Task
In the [FetchTasks]
section of the configuration file, specify the number of fetch tasks using the Number
parameter. If you are configuring the first fetch task, type Number=1
. If one or more fetch tasks have already been configured, increase the value of the Number
parameter by one (1). Below the Number
parameter, specify the names of the fetch tasks, starting from zero (0). For example:
[FetchTasks] Number=1 0=MyTask
Below the [FetchTasks]
section, create a new TaskName section. The name of the section must match the name of the new fetch task. For example:
[FetchTasks] Number=1 0=MyTask [MyTask]
In the new section, set the following parameters to define the location of the repository and the credentials used to access the repository.
NotesServer
|
The host name or IP address of the repository. |
UserIdFile
|
The user ID file to use to access the repository. |
IdFilePassword
|
The password to use with the ID file. |
For example:
[MyTask] NotesServer=MyNotesServer.domain.com UserIdFile=c:\autonomy\NotesConnector\admin.id IdFilePassword=837oiWER
Specify content that you want to retrieve.
To retrieve content from a single database, set the NotesDB
parameter. For example:
[MyTask] NotesServer=MyNotesServer.domain.com UserIdFile=c:\autonomy\NotesConnector\admin.id IdFilePassword=837oiWER NotesDB=.\data\mail\user.nsf
To retrieve content from all of the databases in a folder, use the NotesDbDirectory
parameter to specify the folder. You can then use the DatabaseNameMatch
parameter to choose the exact databases that are retrieved (using a regular expression). For example:
[MyTask] NotesServer=MyNotesServer.domain.com UserIdFile=c:\autonomy\NotesConnector\admin.id IdFilePassword=837oiWER NotesDbDirectory=.\databases\ DatabaseNameMatch=.*
(Optional) Set either the NotesView
or ViewFormula
parameter to specify the database view to use to retrieve data. For example:
[MyTask] NotesServer=MyNotesServer.domain.com UserIdFile=c:\autonomy\NotesConnector\admin.id IdFilePassword=837oiWER NotesDB=.\data\mail\user.nsf NotesView=Index
Save and close the configuration file. You can now start the connector.
NOTE: The connector saves or updates a data file for each completed fetch task. If you make changes to the configuration and want to reset the connector so that it retrieves all of your files again, you can use the PurgeDatastore
action.
|