-
Notifications
You must be signed in to change notification settings - Fork 60
Settings
VADemon edited this page Jan 7, 2019
·
1 revision
The configuration file is wdmrc.config
or wdmrc.exe.config
for older versions.
-
Logging
<config><log4net>
It's standard Apache log4net configurations, take a look at examples -
Special command prefix
<config><AdditionalSpecialCommandPrefix>
default:.,.
The custom special command prefix instead of
>>
. Allows to use WDMRC's >>commands when your client doesn't allow to create such >>directories. -
2-Factor Authentification
<config><TwoFactorAuthHandlerName>
Currently you can use
-
AuthCodeWindow
- asks for authcode in a GUI window (only for .NET Framework releases) -
AuthCodeConsole
- asks for authcode in application console
Be careful, these methods cannot be used when WDMRC is started as a service/daemon!
You can make your own 2FA handlers inherited from
ITwoFaHandler
and put it in separate dll which name starts withMailRuCloudApi.TwoFA
-