Stefan Steiger

Results 23 issues of Stefan Steiger

In the readme "you" write, EWS is superseeded by Microsoft Graph. On the website, "you" then go on to write that it's recommended to migrate to Microsoft Graph to access...

bug in ews-managed-api/Autodiscover/Requests/AutodiscoverRequest.cs if contentEncoding is not set, there is a null-reference exception on AutoDiscovery (Exchange 2010) https://github.com/OfficeDevUnofficial/ews-managed-api/commit/fdde8dc3f25119de7e5e13f38d6cb62ba5a979ab

I'd like to have a sample of how to use DnsSec on the server side. I have come as far as this https://github.com/ststeiger/Arsoft/blob/master/ArsoftTestServer/Servers/DnsSecServer.cs but I can't find any information anywhere...

There is function `queuePostProcessedRowForCleanup(cacheEntry, postProcessedRow, rowIdx)` (in file slick.grid.js) It gets called in ``` // //////////////////////////////////////////////////////////////////////////////////////////// // Interactivity function handleMouseWheel(e) [...] queuePostProcessedRowForCleanup(zombieRowCacheFromLastMouseWheelEvent, zombieRowPostProcessedFromLastMouseWheelEvent); ``` It's missing the rowIdx parameter, and...

I can create a new SMB-File with the below code, but for unknown reason, the text doesn't get written to the file... but I get no error either. ``` SharpCifs.Smb.NtlmPasswordAuthentication...

Added support for Full .NET Framework 2.0. Added conditional compilation symbol, added missing dependencies conditionally if net20 (as internal), extension method for string.IsNullOrEmpty (internal) Since the missing System.Linq and extension...

On [line 89 of RtfBuilder.cs](https://github.com/OleksiiKovalov/expressprofiler/blob/master/ExpressProfiler/ExpressProfiler/RtfBuilder.cs#L89), you do the following: ` value = value.Replace("{", "\\{").Replace("}", "\\}").Replace("\\", "\\\\");` This is wrong. First, you escape `{` with `\{`, then you escape `\ `with...

Under which license does the ExpressProfiler-code come ? I used it to port ExpressProfiler to .NET Core (command-line) [here](https://github.com/ststeiger/sql_profiler). Would be nice to know which one you're using to license...

I am implementing a JMAP-Server. I should be able to test the JMAP-Server. The POP3 Server i implemented, i tested with MailKit. There is an existing libary ([JMapNet](https://github.com/tirth/JmapNet)), but it...

enhancement

ews-managed-api tries to lookup the _autodiscover._tcp URL from the dns server like `nslookup -type=srv _autodiscover._tcp.my_domain.local` which is fine, except it makes calls to dnsapi.dll on Linux ! Self-evidently, that fails....