-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.config
53 lines (44 loc) · 1.51 KB
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
<!--MikroTik Backup Application Settings-->
<appSettings>
<!--Devices section under backup files download-->
<Devices>
<!--Single device under backup files donwload parameters-->
<device>
<!--MikroTik Device IP-->
<IP></IP>
<!--Username alloweed to download backup files-->
<User></User>
<!--User password allowed to download backup files-->
<Pass></Pass>
<!--Backup files names/Device Name/Device Identifier-->
<Name></Name>
</device>
</Devices>
<!--MikroTik Backup Application Additional Backup Settings-->
<Settings>
<setting>
<!--*.backup file name available in RouterOS file explorer-->
<file_name></file_name>
<!--Destination path for backup files-->
<destination_path></destination_path>
<!--Path for log file-->
<log_path></log_path>
<!--*.rsc file name available in RouterOS file explorer-->
<config_name></config_name>
<!--SMTP Server IP-->
<smtp_server></smtp_server>
<!--SMTP port-->
<smtp_port></smtp_port>
<!--E-mail Sender name-->
<sender_name></sender_name>
<!--Reciepants name. To add more than one separate with ','-->
<reciepant_name></reciepant_name>
</setting>
</Settings>
</appSettings>
</configuration>