-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to set NTLM Auth in config.yml
- Loading branch information
Etienne Stalmans
committed
May 11, 2017
1 parent
40f7b56
commit 99a49bd
Showing
4 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,3 @@ _testmain.go | |
ruler-* | ||
ruler | ||
logs/ | ||
config.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ mailbox: "[email protected]" | |
rpcurl: "https://outlook.office365.com/rpc/rpcproxy.dll" | ||
rpc: false | ||
rpcencrypt: true | ||
ntlm: true | ||
mapiurl: "https://outlook.office365.com/mapi/emsmdb/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,7 @@ type YamlConfig struct { | |
RPCURL string | ||
RPC bool | ||
RPCEncrypt bool | ||
Ntlm bool | ||
MapiURL string | ||
} | ||
|
||
|