# HG changeset patch # User Sebastien Jodogne # Date 1449477997 -3600 # Node ID e8146c9c28a4c821d4ce55d1e1cf10284ed7e35b # Parent c8877965d67d3c316a346c48341117701affa727 Promiscuous mode is now turned off by default diff -r c8877965d67d -r e8146c9c28a4 NEWS --- a/NEWS Fri Dec 04 16:18:46 2015 +0100 +++ b/NEWS Mon Dec 07 09:46:37 2015 +0100 @@ -3,6 +3,7 @@ * Fix modality worklists server if some fields are null * More tolerant "/series/.../ordered-slices" with broken series +* Promiscuous mode is now turned off by default Version 0.9.5 (2015/12/02) diff -r c8877965d67d -r e8146c9c28a4 OrthancServer/main.cpp --- a/OrthancServer/main.cpp Fri Dec 04 16:18:46 2015 +0100 +++ b/OrthancServer/main.cpp Mon Dec 07 09:46:37 2015 +0100 @@ -269,7 +269,7 @@ } } - return Configuration::GetGlobalBoolParameter(configuration, true); + return Configuration::GetGlobalBoolParameter(configuration, false); } }; diff -r c8877965d67d -r e8146c9c28a4 Resources/Configuration.json --- a/Resources/Configuration.json Fri Dec 04 16:18:46 2015 +0100 +++ b/Resources/Configuration.json Mon Dec 07 09:46:37 2015 +0100 @@ -104,7 +104,7 @@ // Whether Orthanc accepts to act as C-Store SCP for unknown storage // SOP classes (aka. "promiscuous mode") - "UnknownSopClassAccepted" : true, + "UnknownSopClassAccepted" : false,