Skip to content
Snippets Groups Projects
Commit 58819b1e authored by Armin Costa's avatar Armin Costa
Browse files

Update Configuration.md

parent 298c5a93
No related branches found
No related tags found
No related merge requests found
......@@ -76,3 +76,35 @@ CONFIG_PLUGIN=./plugins/plugin.ini
**SMTP_PORT** Port for SMTP
[Plugin]
**CONFIG_PLUGIN** Configuration file for Plugins. Java class variable: DistributionServerConfig.CONFIG_PLUGIN
## Authentication configuration file ##
Authentication parameters used in **<Distribution>** and **<Download>** operations are stored within the file DistributionAuth.xml:
Sample entry:
```xml
<Auth>
<AuthRef name="testuser@server.yourdomain" active="yes">
<Host>server.yourdomain</Host>
<User>testuser</User>
<Pwd>test</Pwd>
<Param>nativejava</Param>
</AuthRef>
</Auth>
```
In the DES processor operation declarations the authentication entry can be references as follows:
```xml
<consumer name="testuser@server.yourdomain" active="yes">
<ProductType>*.txt</ProductType>
<EMail>notifymail@yourdomain</EMail>
<NotifyEmail>false</NotifyEmail>
<Recursive>true</Recursive>
</Consumer>
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment