<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
Hi Dave,
<div class=""><br class="">
</div>
<div class="">I had to add the “Permission -> Roles -> Data entry” to the user. I have hundreds of users that were creating visits previously without this permission. I’m moving my scripts to use single user for the creation of candidates and visits.</div>
<div class=""><br class="">
</div>
<div class="">Thank you.</div>
<div class=""><br class="">
</div>
<div class="">Best,</div>
<div class="">Alfredo.<br class="">
<div><br class="">
<blockquote type="cite" class="">
<div class="">On Feb 12, 2021, at 3:59 PM, Dave MacFarlane <<a href="mailto:dave.macfarlane@mcin.ca" class="">dave.macfarlane@mcin.ca</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<p class=""><span style="padding: 3px 10px; border-radius: 5px; color: #ffffff; font-weight: bold; display: inline-block; background-color: #ff0000;" class=""> External Email - Use Caution </span></p>
<div class=""><br class="webkit-block-placeholder">
</div>
<div dir="ltr" class="">
<div class="">Hi Alfredo,</div>
<div class=""><br class="">
</div>
<div class="">The only place in the code I see that error message is in modules/api/php/endpoints/candidate/visit/visit.class.inc. The code around it is:<br class="">
</div>
<div class=""><br class="">
</div>
<div class=""> $centerid = array_search($visitinfo['Site'], \Utility::getSiteList());<br class="">
<br class="">
</div>
<div class=""> if (!in_array($centerid, $user->getCenterIDs())) {<br class="">
return new \LORIS\Http\Response\JSON\Forbidden(<br class="">
'You can`t create candidates visit for that site'<br class="">
);<br class="">
}<br class="">
<br class="">
</div>
<div class="">I don't see any way it would be possible to trigger that error if you've given the user all sites.</div>
<div class=""><br class="">
</div>
<div class="">If you have a dev or staging server where you could add debugging statements could you (inside of the if statement) put:</div>
<div class=""><br class="">
</div>
<div class="">var_dump($user->getCenterIDs());</div>
<div class="">var_dump($centerid);</div>
<div class="">var_dump($visitinfo);</div>
<div class="">var_dump(\Utility::getSiteList());</div>
<div class=""><br class="">
</div>
<div class="">I think that would cover all the variables that have any affect on the condition in order to trace where it's going wrong..<br class="">
</div>
</div>
<br class="">
<div class="gmail_quote">
<div dir="ltr" class="gmail_attr">On Fri, Feb 12, 2021 at 1:11 PM Morales Pinzon, Alfredo <<a href="mailto:AMORALESPINZON@bwh.harvard.edu" class="">AMORALESPINZON@bwh.harvard.edu</a>> wrote:<br class="">
</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div style="overflow-wrap: break-word;" class="">Dear LorisDev,
<div class=""><br class="">
</div>
<div class="">I added all the sites for a user and gave all the permissions to that user, but still I cannot use the end-point “PUT /api/v0.0.3/candidates/{candidate}/{visitlabel}” with the following payload:</div>
<div class=""><br class="">
</div>
<div class="">===</div>
<div class="">
<div style="color:rgb(54,54,54);background-color:rgb(255,255,255);font-family:Menlo,Monaco,"Courier New",monospace;line-height:18px;white-space:pre-wrap" class="">
<div class=""><span style="color:rgb(44,44,44)" class="">{</span></div>
<div class=""><span style="color:rgb(9,89,132)" class="">"CandID"</span><span style="color:rgb(44,44,44)" class="">:</span>
<span style="color:rgb(162,86,55)" class="">"559153"</span><span style="color:rgb(44,44,44)" class="">,</span>
</div>
<div class=""><span style="color:rgb(9,89,132)" class="">"Visit"</span><span style="color:rgb(44,44,44)" class="">:</span>
<span style="color:rgb(162,86,55)" class="">"w024"</span><span style="color:rgb(44,44,44)" class="">,</span>
</div>
<div class=""><span style="color:rgb(9,89,132)" class="">"Site"</span><span style="color:rgb(44,44,44)" class="">:</span>
<span style="color:rgb(162,86,55)" class="">"111-RWA-1"</span><span style="color:rgb(44,44,44)" class="">,</span>
</div>
<div class=""><span style="color:rgb(9,89,132)" class="">"Battery"</span><span style="color:rgb(44,44,44)" class="">:</span>
<span style="color:rgb(162,86,55)" class="">"Experimental"</span><span style="color:rgb(44,44,44)" class="">,</span>
</div>
<div class=""><span style="color:rgb(9,89,132)" class="">"Project"</span><span style="color:rgb(44,44,44)" class="">:</span>
<span style="color:rgb(162,86,55)" class="">"ADVANCE_ATTAIN"</span></div>
<div class=""><span style="color:rgb(44,44,44)" class="">}</span></div>
</div>
</div>
<div class="">===</div>
<div class=""><br class="">
</div>
<div class="">I am getting the following response:</div>
<div class=""><br class="">
</div>
<div class="">===</div>
<div class="">
<div style="color:rgb(54,54,54);background-color:rgb(255,255,255);font-family:Menlo,Monaco,"Courier New",monospace;line-height:18px;white-space:pre-wrap" class="">
<div style="line-height:18px" class="">
<div class=""><span style="color:rgb(44,44,44)" class="">{</span></div>
<div class=""><span style="color:rgb(9,89,132)" class="">"error"</span><span style="color:rgb(44,44,44)" class="">:</span>
<span style="color:rgb(162,86,55)" class="">"You can`t create candidates visit for that site"</span></div>
<div class=""><span style="color:rgb(44,44,44)" class="">}</span></div>
</div>
</div>
</div>
<div class="">===</div>
<div class=""><br class="">
</div>
<div class="">I don’t see any errors in apache.</div>
<div class="">Any ideas?</div>
<div class=""><br class="">
</div>
<div class="">Best,</div>
<div class="">Alfredo.</div>
<div class="">
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On Feb 9, 2021, at 11:04 PM, Morales Pinzon, Alfredo <<a href="mailto:AMORALESPINZON@BWH.HARVARD.EDU" target="_blank" class="">AMORALESPINZON@BWH.HARVARD.EDU</a>> wrote:</div>
<br class="">
<div class="">
<div style="overflow-wrap: break-word;" class="">
<p class=""><span style="padding:3px 10px;border-radius:5px;color:rgb(255,255,255);font-weight:bold;display:inline-block;background-color:rgb(255,0,0)" class=""> External Email - Use Caution </span></p>
<div class=""><br class="">
</div>
Hi Dave,
<div class=""><br class="">
</div>
<div class="">I am trying to give add more sites for a user but I’m getting the error in the image attached. I tried in a different user and I got the same error. This is the error log in loris-error.log:</div>
<div class=""><br class="">
</div>
<div class="">===</div>
<div class="">
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(29,226,223)" class="">[</span><span style="font-variant-ligatures:no-common-ligatures" class="">Tue Feb 09 22:59:18.026223 2021</span><span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(29,226,223)" class="">]</span><span style="font-variant-ligatures:no-common-ligatures" class="">
[php7:notice] [pid 21147] [client <a href="http://secure-web.cisco.com/17dMoxhaxtfWxxexh72WiSvFSPPmxo9AZIzVi5B54IWyW3xjq0J8ILwivzoLUninOrNKnLnWm0Ue74UQckET5Lp7335PLd-UG5Q2iU24cqWrIjk9xX9te95gBbgeVf5PYD-1Gn03dyjddix2eQ6eQw91zL5d3SMVBQIpoc7pLKB5K1KJyf-C0EIhWwZOswO9r2yGG1xFLPFlA91LfOsoZQPvKiwmJcfiQtK5DB4FJw6WHz2AE11jxJb1-9hG_RP_b8wvwX15_XoKXYfxNmtwsxw/http%3A%2F%2F216.15.126.108%3A59451" target="_blank" class="">
216.15.126.108:59451</a>] PHP Notice: Undefined index: active_to in /var/www/loris/modules/user_accounts/php/edit_user.class.inc on line 1259, referer:
<a href="https://secure-web.cisco.com/1fjjftOD7JdgU6QEtxdFoyzwJXlYq944elQIMh_3h0e5Y0HeF1PoT4dv0KqQBcicpzA5MaH5gQ0m1FW-YrmvLHoIE88K5DhXonw3xk5ZzU_uhtrdkI0JSZ0mb3ZOXMfDhB_pEEG6767MV1x49pX6ju6jt84nM36tyrl0_OoQl2qld_OwxQRUUA3D52CNDX4sNSnSN5Oe97KpMVhzBi3u5CfpYuPj-Ljiz8eBorIj4I-E0CTu1ChjN0zCmHS7YgsAS9rGBJrEOE9TxZ0biFddcKA/https%3A%2F%2Fipmsa-loris.bic.mni.mcgill.ca%2Fuser_accounts%2Fedit_user%2Falfredouser" target="_blank" class="">
https://ipmsa-loris.bic.mni.mcgill.ca/user_accounts/edit_user/alfredouser</a></span></div>
</div>
<div class="">===</div>
<div class=""><br class="">
</div>
<div class="">Any ideas?</div>
<div class=""><br class="">
</div>
<div class="">Best,</div>
<div class="">Alfredo,.</div>
<div class=""><br class="">
</div>
<div class=""><span id="gmail-m_-6405763436635974455cid:7BDF9833-5229-43CB-8521-F3C56E016DAF" class=""><Screen Shot 2021-02-09 at 11.00.44 PM.png></span><br class="">
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On Feb 8, 2021, at 4:02 PM, Dave MacFarlane <<a href="mailto:dave.macfarlane@mcin.ca" target="_blank" class="">dave.macfarlane@mcin.ca</a>> wrote:</div>
<br class="">
<div class="">
<p class=""><span style="padding:3px 10px;border-radius:5px;color:rgb(255,255,255);font-weight:bold;display:inline-block;background-color:rgb(255,0,0)" class=""> External Email - Use Caution </span></p>
<div class=""><br class="">
</div>
<div dir="ltr" class="">
<div class="">Hi Sridar,</div>
<div class=""><br class="">
</div>
<div class="">Users in LORIS may be affiliated with multiple sites at once. If there's a single uploader the easiest is just to ensure that the account used for uploading is affiliated with all the sites in LORIS by selecting them all in the multi-select in
the user management page. (Clicking on the first one, then scrolling down and clicking the last one while holding shift should select them all in most web browsers.)</div>
<div class=""><br class="">
</div>
<div class="">- Dave<br class="">
</div>
</div>
<br class="">
<div class="gmail_quote">
<div dir="ltr" class="gmail_attr">On Mon, Feb 8, 2021 at 3:31 PM Sridar Narayanan, Dr. <<a href="mailto:sridar.narayanan@mcgill.ca" target="_blank" class="">sridar.narayanan@mcgill.ca</a>> wrote:<br class="">
</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="">Hi Dave,
<div class=""><br class="">
</div>
<div class="">While requiring comprehensive site uploader data makes sense in the context of a prospective study where the sites are actually uploading data directly, it doesn’t make much sense when data is being uploaded centrally, either prospectively or
retrospectively as in our case. Is there an option to specify a single, centralized uploader for all sites?</div>
<div class=""><br class="">
</div>
<div class="">Thanks,</div>
<div class=""><br class="">
</div>
<div class="">Sridar</div>
<div class=""><br class="">
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On Feb 8, 2021, at 2:37 PM, Dave MacFarlane <<a href="mailto:dave.macfarlane@mcin.ca" target="_blank" class="">dave.macfarlane@mcin.ca</a>> wrote:</div>
<br class="">
<div class="">
<div dir="ltr" class="">Set the "Real_name" field in the user table for that user to a value other than null (and maybe ensure no other users have null real names while you're at it.. they would have the same problem logging in). I think that any string value
should fix the error that you posted.<br class="">
</div>
<br class="">
<div class="gmail_quote">
<div dir="ltr" class="gmail_attr">On Mon, Feb 8, 2021 at 2:33 PM Morales Pinzon, Alfredo <<a href="mailto:AMORALESPINZON@bwh.harvard.edu" target="_blank" class="">AMORALESPINZON@bwh.harvard.edu</a>> wrote:<br class="">
</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="">Hi Dave,
<div class=""><br class="">
</div>
<div class="">What is your suggestion to fix this?</div>
<div class=""><br class="">
</div>
<div class="">Best,</div>
<div class="">Alfredo.</div>
<div class="">
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On Feb 8, 2021, at 1:24 PM, Dave MacFarlane <<a href="mailto:dave.macfarlane@mcin.ca" target="_blank" class="">dave.macfarlane@mcin.ca</a>> wrote:</div>
<br class="">
<div class="">
<p style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none" class="">
<span style="padding:3px 10px;border-radius:5px;color:rgb(255,255,255);font-weight:bold;display:inline-block;background-color:rgb(255,0,0)" class=""> External Email - Use Caution </span></p>
<div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none" class="">
<br class="">
</div>
<div dir="ltr" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none" class="">
<div class="">I don't think the Real_name field should be null. It's used for the name to display in the menu at the top of LORIS.</div>
<div class=""><br class="">
</div>
<div class="">(In my local database the column is non-nullable, but it seems that the default schema allows null.. I think the fact that it allowed you to insert a null value is a minor bug.)<br class="">
</div>
<div class=""><br class="">
</div>
<div class="">- Dave<br class="">
</div>
<br class="">
</div>
<br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none" class="">
<div class="gmail_quote" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">
<div dir="ltr" class="gmail_attr">On Mon, Feb 8, 2021 at 1:07 PM Morales Pinzon, Alfredo <<a href="mailto:AMORALESPINZON@bwh.harvard.edu" target="_blank" class="">AMORALESPINZON@bwh.harvard.edu</a>> wrote:<br class="">
</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="">Dear LorisDev,
<div class=""><br class="">
</div>
<div class="">I am getting a 500 error after login into LORIS. This is what I can see in the logs:</div>
<div class=""><br class="">
</div>
<div class="">===</div>
<div class="">
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class="">[Mon Feb 08 12:57:54.559522 2021] [php7:error] [pid 8074] [client<span class=""> </span><a href="http://secure-web.cisco.com/1yyORuoeO9JxDA-IdiJYnWoKpPeOCoB_GC-bwmu-kKM0hweK4CWSEriGGX17eQ8Qq5nz4PPRg7R3MYEuJEIQ1HN01bBB6ZtcT0PcZpjpgMCm4yw-keQSOTQm7UYnGOOiDWbOzKlVrF4X1CyvYs3dwvgl8ZTqBBqwom6DVPTxrFrCBiDQPFG2wVI5CQ6-FmFg4RgFYYtKQ6MJC-ebrPkpxHNlL2iNIIYgeMOgR7dg_StpUuwxXqWRY8EKN93dnaKG3gFAwBzlBJ9eeQX2RGLbHUA/http%3A%2F%2F216.15.126.108%3A61071" target="_blank" class="">216.15.126.108:61071</a>]
PHP Fatal error: Uncaught TypeError: Return value of User::getFullname() must be of the type string, null returned in /var/www/loris/php/libraries/User.class.inc:236\nStack trace:\n#0 /var/www/loris/modules/dashboard/php/module.class.inc(118): User->getFullname()\n#1
/var/www/loris/modules/dashboard/php/module.class.inc(57): LORIS\\dashboard\\Module->_getWelcomeWidget(Object(Database), Object(NDB_Config), Object(User))\n#2 /var/www/loris/modules/dashboard/php/dashboard.class.inc(75): LORIS\\dashboard\\Module->getWidgets('dashboard',
Object(User), Array)\n#3 /var/www/loris/php/libraries/Module.class.inc(275): LORIS\\dashboard\\Dashboard->__construct(Object(LORIS\\dashboard\\Module), 'dashboard', '', '', 'dashboard')\n#4 /var/www/loris/php/libraries/Module.class.inc(342): Module->loadPage('dashboard')\n#5
/var/www/loris/src/Middleware/ResponseGenerator.php(50): Module->handle(Object(Laminas\\Diactoros\\ServerRequest))\n#6 /var/www/loris/src/Middleware/AuthMiddleware.php(63): LORIS\\Middleware\\ResponseGenerator->process(Object(Laminas\\Diactoros\\Se in /var/www/loris/php/libraries/User.class.inc
on line 236</span></div>
</div>
<div class="">===</div>
<div class=""><br class="">
</div>
<div class="">Perhaps it is an issue with the name of the user? I created hundreds of users for batch insertion of candidates and visits for previous versions of LORIS that required insertion of Candidates and Visits by users belonging to a given center. </div>
<div class=""><br class="">
</div>
<div class="">This is an entry in the users table without the hashed password:</div>
<div class=""><br class="">
</div>
<div class="">===</div>
<div class="">
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class="">*************************** 850. row ***************************</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> ID: 850</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> UserID: 723-DKC-1_dataman</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Password: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Real_name: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> First_name: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Last_name: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Degree: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Position_title: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Institution: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Department: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Address: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> City: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> State: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Zip_code: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Country: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Phone: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Fax: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> <span class=""> </span><a href="mailto:723-DKC-1_dataman@ipmsa.com" target="_blank" class="">Email: 723-DKC-1_dataman@ipmsa.com</a></span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Privilege: 0</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> PSCPI: N</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> DBAccess: </span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Active: Y</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Password_hash: /REMOVED/</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Password_expiry: 2035-01-01</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> Pending_approval: N</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class="">Doc_Repo_Notifications: N</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> language_preference: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> active_from: NULL</span></div>
<div style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo" class="">
<span style="font-variant-ligatures:no-common-ligatures" class=""> active_to: NULL</span></div>
</div>
<div class="">===</div>
<div class=""><br class="">
</div>
<div class="">Best,</div>
<div class="">Alfredo.</div>
<div class="">The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Mass General Brigham Compliance HelpLine
at<span class=""> </span><a href="http://secure-web.cisco.com/1mpsSvwo8y-cQVgPzryfWrMGrwgyJRuBZ21l3OpfPidIIOGkJJP5M-dA79KxrAs8inL2wDNKKwu_7FhZUrX1B9jZN_ESfEAND5f7ouFz36SxeVJtmLYqIy1_s5VhkkRuoHuptM3Uh1sF78u_V56JHmBd_-oG0pUY46rhlI4D5gs24UyDJj-bZy2iQgX7qpfPI2maK5TTtXgqHCQvlSfhPSJVo58wWwaeXZEJ7P8BJ4biZGLOYTiIwB5eSN4T8a77Dg2hjPsDH4rvouJJAf5F3Jg/http%3A%2F%2Fwww.massgeneralbrigham.org%2Fcomplianceline" target="_blank" class="">http://www.massgeneralbrigham.org/complianceline</a><span class=""> </span>.
If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.</div>
</div>
_______________________________________________<br class="">
Loris-dev mailing list<br class="">
<a href="mailto:Loris-dev@bic.mni.mcgill.ca" target="_blank" class="">Loris-dev@bic.mni.mcgill.ca</a><br class="">
<a href="https://secure-web.cisco.com/1YVFggw7EgDexlyx8pzmXliYExDI_SUGOOLhxJeHrfWOj50RAafEI5uGOBNyI4CRn6B4sl6vqQyDz_mgNWYCDYnu7_rYAr4EnOj5g3g6Mf5KG8H4DWL7T9BvF-_0IGFgWZzXI3mjSKHk4ri4vhgIO19lTq1AABOiJMRT7HnHR33sn1YMzq9tVjrXyWr6Vw50EHfrHJr8TIMegfBktpLydEls9DCJ25ZiMU7sZJSnI0U-l7LBWJh2cKMHDKIfcbAg32FpB12zUC9HPZ1jO0GtneA/https%3A%2F%2Fmailman.bic.mni.mcgill.ca%2Fmailman%2Flistinfo%2Floris-dev" rel="noreferrer" target="_blank" class="">https://mailman.bic.mni.mcgill.ca/mailman/listinfo/loris-dev</a></blockquote>
</div>
</div>
</blockquote>
</div>
<br class="">
</div>
<div class="">The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Mass General Brigham Compliance HelpLine
at <a href="http://secure-web.cisco.com/1wSj8vAv0Td5WK_KOkBSb0ng1Vs3CIAQI_yrm5rtdvRGk4r-PzYAuxt3LWub6qIceFgz-9ZnpDHl3ZxB5EdexVfEW8FOCPWtJOdXUMlvMcAlj-VZsKTHqOE8oNiXoTDH0pKG_xpMT8yxqBlhqlnxYJgUXosatclyKt6owrZVI4x_m8R5gtF35r9lybdLXsvns5M3qfhuAmauqNRuceGhmEV7AmKUZiFaW9Lofx7RfS9h4Gw93_DhYch1KYQTU_-JtqZXt8tO3iHtDOUjVniFmSA/http%3A%2F%2Fwww.massgeneralbrigham.org%2Fcomplianceline" target="_blank" class="">
http://www.massgeneralbrigham.org/complianceline</a> . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.</div>
</div>
</blockquote>
</div>
</div>
</blockquote>
</div>
<br class="">
</div>
</div>
</blockquote>
</div>
</div>
</blockquote>
</div>
<br class="">
</div>
<div class="">The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Mass General Brigham Compliance HelpLine
at <a href="http://secure-web.cisco.com/1x72LRdjRgMoLRzoyJqxfvBtnc2pSLfO931mbsvhW1gdF7TbzOlbKiKQFEKcLDz0QZHUZd6eTmeeTs3JB9wJD-KCnPuwb_AdkR40s1cWhWRahVU2nP4A_VkvC4Ljn00szCh9DcxAIlyNpTsVwAk5F7EDb9KCVV5mKN4EhKfULJ_mDM6Vx8h4OIjzAZAMRto5neb_f7DTjy8A3ZI3h24g4ITn0MV5rPQBdMYCVxNg0sxiRD7gAhLpXLPGORS2WcPb1K_fqEDJ3ryTtI3BGTYrFPQ/http%3A%2F%2Fwww.massgeneralbrigham.org%2Fcomplianceline" target="_blank" class="">
http://www.massgeneralbrigham.org/complianceline</a> . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.</div>
</div>
_______________________________________________<br class="">
Loris-dev mailing list<br class="">
<a href="mailto:Loris-dev@bic.mni.mcgill.ca" target="_blank" class="">Loris-dev@bic.mni.mcgill.ca</a><br class="">
<a href="https://secure-web.cisco.com/1-zL4DlVdDgIpuP-wmX2G-_BmTOEoFKnRRdZt9lD0LaePFAD5YNdPkfKUs2HN3qJbIDG6ENFBb5A1eA5UrlUr8mIeZTxSKQoxNlr5INLM454I7Pt1yZ5NeChKafwZ4ofTxasbruAKIKuoyCewU2N79yOuXpOh8u2HMDTW23OLP_KP5XdVthRSNY4opuKoWoI791SsnNNzh0MruQqFELfEAaKQ5JY0F-i51qEWUhIHD7buHnWpE-XwMDoxW5tAzkStaaoqzRYXnrSlP2Ff3z8iGQ/https%3A%2F%2Fmailman.bic.mni.mcgill.ca%2Fmailman%2Flistinfo%2Floris-dev" target="_blank" class="">https://secure-web.cisco.com/1-zL4DlVdDgIpuP-wmX2G-_BmTOEoFKnRRdZt9lD0LaePFAD5YNdPkfKUs2HN3qJbIDG6ENFBb5A1eA5UrlUr8mIeZTxSKQoxNlr5INLM454I7Pt1yZ5NeChKafwZ4ofTxasbruAKIKuoyCewU2N79yOuXpOh8u2HMDTW23OLP_KP5XdVthRSNY4opuKoWoI791SsnNNzh0MruQqFELfEAaKQ5JY0F-i51qEWUhIHD7buHnWpE-XwMDoxW5tAzkStaaoqzRYXnrSlP2Ff3z8iGQ/https%3A%2F%2Fmailman.bic.mni.mcgill.ca%2Fmailman%2Flistinfo%2Floris-dev</a><br class="">
</div>
</blockquote>
</div>
<br class="">
</div>
<div class="">The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Mass General Brigham Compliance HelpLine
at <a href="http://secure-web.cisco.com/1x72LRdjRgMoLRzoyJqxfvBtnc2pSLfO931mbsvhW1gdF7TbzOlbKiKQFEKcLDz0QZHUZd6eTmeeTs3JB9wJD-KCnPuwb_AdkR40s1cWhWRahVU2nP4A_VkvC4Ljn00szCh9DcxAIlyNpTsVwAk5F7EDb9KCVV5mKN4EhKfULJ_mDM6Vx8h4OIjzAZAMRto5neb_f7DTjy8A3ZI3h24g4ITn0MV5rPQBdMYCVxNg0sxiRD7gAhLpXLPGORS2WcPb1K_fqEDJ3ryTtI3BGTYrFPQ/http%3A%2F%2Fwww.massgeneralbrigham.org%2Fcomplianceline" target="_blank" class="">
http://www.massgeneralbrigham.org/complianceline</a> . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.</div>
</div>
</blockquote>
</div>
</div>
</blockquote>
</div>
<br class="">
</div>
<div>The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Mass General Brigham Compliance HelpLine at http://www.massgeneralbrigham.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail.</div></body>
</html>