<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>secure-messaging - Ziba Guru</title>
	<atom:link href="https://ziba.guru/tag/secure-messaging/feed/" rel="self" type="application/rss+xml" />
	<link>https://ziba.guru</link>
	<description>your path to beautiful life</description>
	<lastBuildDate>Thu, 16 Jul 2026 12:35:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://ziba.guru/wp-content/uploads/2025/02/cropped-ziba-favico-32x32.png</url>
	<title>secure-messaging - Ziba Guru</title>
	<link>https://ziba.guru</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Your Patients&#8217; X-Rays Are on WhatsApp. Here&#8217;s a Secure Alternative Clinics Can Run Themselves.</title>
		<link>https://ziba.guru/2026/07/your-patients-x-rays-are-on-whatsapp-heres-a-secure-alternative-clinics-can-run-themselves/</link>
					<comments>https://ziba.guru/2026/07/your-patients-x-rays-are-on-whatsapp-heres-a-secure-alternative-clinics-can-run-themselves/#respond</comments>
		
		<dc:creator><![CDATA[Louis Phaigh]]></dc:creator>
		<pubDate>Thu, 16 Jul 2026 12:35:43 +0000</pubDate>
				<category><![CDATA[Health Technology]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[clinic technology]]></category>
		<category><![CDATA[digital health]]></category>
		<category><![CDATA[econsult]]></category>
		<category><![CDATA[end-to-end encryption]]></category>
		<category><![CDATA[gdpr]]></category>
		<category><![CDATA[hipaa]]></category>
		<category><![CDATA[patient privacy]]></category>
		<category><![CDATA[secure-messaging]]></category>
		<category><![CDATA[self-hosted]]></category>
		<category><![CDATA[telemedicine]]></category>
		<guid isPermaLink="false">https://ziba.guru/2026/07/your-patients-x-rays-are-on-whatsapp-heres-a-secure-alternative-clinics-can-run-themselves/</guid>

					<description><![CDATA[<p>Clinical communication quietly migrated onto consumer messengers. A self-hosted, end-to-end encrypted messaging framework offers a third option between a six-figure enterprise contract and nothing — where the server provably cannot read a consultation, and no administrator can open a doctor-patient thread. An honest look at what it does, and the four things it doesn&#8217;t. Secure</p>
<p>The post <a href="https://ziba.guru/2026/07/your-patients-x-rays-are-on-whatsapp-heres-a-secure-alternative-clinics-can-run-themselves/">Your Patients’ X-Rays Are on WhatsApp. Here’s a Secure Alternative Clinics Can Run Themselves.</a> first appeared on <a href="https://ziba.guru">Ziba Guru</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><strong>Clinical communication quietly migrated onto consumer messengers. A self-hosted, end-to-end encrypted messaging framework offers a third option between a six-figure enterprise contract and nothing — where the server provably cannot read a consultation, and no administrator can open a doctor-patient thread. An honest look at what it does, and the four things it doesn&#8217;t.</strong></p>
<p>Secure messaging for doctor-patient and doctor-doctor communication, on infrastructure the practice controls.</p>
<div>
<p>Ask a doctor how they sent a colleague that X-ray last week and you&#8217;ll usually get a sheepish answer: WhatsApp. Ask how the patient sent the photo of their healing wound, and it&#8217;s the same. Clinical communication has quietly migrated onto consumer messengers — because they&#8217;re free, everyone has one, and they work.</p>
<p>They&#8217;re also a confidentiality problem hiding in plain sight. Patient images and clinical discussions end up on a third party&#8217;s servers, in another jurisdiction, on personal phones, in the same app as family group chats. The clinic doesn&#8217;t control where the data lives, how long it&#8217;s kept, or who could be compelled to hand it over. Most practices know this. They keep doing it anyway, because the compliant alternative was a six-figure enterprise contract or nothing at all.</p>
<p>There&#8217;s a third option worth knowing about: a self-hosted, end-to-end encrypted messaging framework you run yourself. <a href="https://vbwd.cc">VBWD</a>&#8216;s messaging plugins — <strong>meinchat</strong> and <strong>meinchat-plus</strong> — are open, source-available components designed for exactly this shape of problem. Here&#8217;s an honest look at what they do, and just as importantly, what they don&#8217;t.</p>
<h2>What &#8220;end-to-end&#8221; actually means here</h2>
<p>The claim that matters, stated plainly in the project&#8217;s own documentation: <strong>the server holds no keys and never encrypts or decrypts.</strong> Clients encrypt. The server checks that the sealed envelope is a legal shape and size, stores it, passes it on, and tracks delivery. That&#8217;s its entire role.</p>
<p>Read that again from a clinic&#8217;s perspective. It means your own server administrator cannot read a consultation. Neither can your hosting provider. Neither can anyone who obtains a copy of the database. The confidentiality doesn&#8217;t rest on a promise or a policy — it rests on the server not possessing the keys.</p>
<p>The encryption is a Signal-style double ratchet, the same broad design used by the messaging apps with the strongest privacy reputations. Around it sit the details that separate a real implementation from a demo: signed and one-time prekeys, so you can send a message to a colleague who&#8217;s offline and it decrypts correctly when they open their phone; padding of messages to fixed blocks, so an observer watching the traffic learns a message&#8217;s length only to within a block rather than exactly; a downgrade defence, so a client that demanded encryption refuses an answer that arrives unencrypted; and support for a second device, with biometric pairing on iOS.</p>
<p>One point of precision, because in security an imprecise claim is a false one: <strong>base meinchat is not end-to-end encrypted.</strong> It encrypts the message cache stored on the device, but the messages themselves pass through the server readable. End-to-end encryption comes from enabling <strong>meinchat-plus</strong>, a separate plugin that layers on top. For clinical use, that plugin isn&#8217;t optional — it&#8217;s the point.</p>
<h2>Privacy that&#8217;s built in rather than promised</h2>
<p>Three design decisions stand out for anyone handling patient information.</p>
<p><strong>There is no way for an administrator to read conversations.</strong> The admin panel lets you manage nicknames, ban abusive accounts, and audit transfers. There is no screen anywhere that opens a doctor-patient thread. That&#8217;s not a permission you switch off — the feature doesn&#8217;t exist. A practice manager cannot read a consultation even if they want to.</p>
<p><strong>Retention is short by default and yours to set.</strong> Server-side messages default to a two-day window, with a nightly job that hard-deletes them — no tombstones, no soft-delete graveyard quietly retaining what you thought was gone. Set it to zero and the server becomes effectively amnesic. That&#8217;s data minimisation as a default rather than an afterthought.</p>
<p><strong>It runs on your infrastructure.</strong> Self-hosting means the data sits in a jurisdiction you chose, on hardware you control, with no third-party processor in the middle. For European practices weighing data-residency obligations, that&#8217;s a structurally different position from &#8220;a US vendor promises to store it in Frankfurt.&#8221;</p>
<h2>What it fits: the conversation, not the consultation</h2>
<p>Being clear-eyed about the shape of the tool matters more than listing features. <strong>meinchat has no video and no voice.</strong> It is text and images. It is not a video-visit platform, and if live consultations are what you need, this is the wrong tool and you should look elsewhere.</p>
<p>What it is good at is the enormous volume of clinical communication that isn&#8217;t a video visit:</p>
<ul>
<li><strong>Doctor-to-patient follow-up</strong> — post-op check-ins, &#8220;does this look infected?&#8221;, medication questions, triage before a visit is booked. Photos travel as client-encrypted attachments.</li>
<li><strong>Doctor-to-doctor consults</strong> — the eConsult: a GP asking a dermatologist to glance at an image, a specialist second opinion, the informal question that currently happens over a consumer messenger.</li>
<li><strong>Multidisciplinary team discussion</strong> — group rooms for case conversations across a care team.</li>
<li><strong>Intake from someone who isn&#8217;t a patient yet</strong> — a public widget where a guest can start a conversation without an account.</li>
</ul>
<p>Clinicians use web, iOS, or Android against the same backend, so the phone in a doctor&#8217;s pocket and the browser at reception are the same system, with one set of rules.</p>
<h2>The bots — for admin, not diagnosis</h2>
<p>The platform ships a bot framework that plugs into the messenger, and it&#8217;s worth understanding what&#8217;s appropriate here. A bot can answer questions grounded in <em>your own documents</em> — opening hours, preparation instructions, insurance and billing questions, what to bring — using full-text search over a corpus you supply. Notably, retrieval runs inside your own database: your document corpus isn&#8217;t shipped to an external search service.</p>
<p>There&#8217;s a hard safety boundary to state out loud. <strong>A retrieval bot answering &#8220;when should I stop eating before my procedure&#8221; is an administrative tool. It is not a diagnostic one, and it must never be presented to a patient as clinical advice.</strong> Triage and symptom assessment are regulated clinical activities with real consequences when they go wrong. Use the bot to take load off reception, not off the clinician.</p>
<p>One architectural detail deserves credit. The bot&#8217;s search can read your catalogue of services — and the platform&#8217;s core registry <em>hard-blocks</em> user records and invoices from ever being searchable, by refusing the registration outright. A bot cannot be misconfigured into searching your patient list or their billing, because there is no code path that would allow it.</p>
<h2>The honest limits — read this part</h2>
<p>Anyone selling you software for healthcare should tell you where it stops. So:</p>
<p><strong>This is not a compliance product, and no software is.</strong> End-to-end encryption and self-hosting are strong technical foundations, but HIPAA, GDPR, or MDR compliance is an organisational achievement, not a feature you install. You&#8217;d still need your data protection impact assessment, your processor agreements, your access policies, staff training, and an audit trail. The software is a building block. Your practice remains the data controller and carries the responsibility.</p>
<p><strong>This is not a certified medical device</strong>, and nothing here is validated for clinical decision-making.</p>
<p><strong>The messenger must not be your medical record.</strong> This one is easy to get wrong and important to get right. Medical record-keeping laws require retaining records for <em>years</em>; this messenger defaults to deleting messages after <em>days</em>, deliberately, for privacy. Those two facts only coexist if you&#8217;re clear about roles: the record of truth is your EMR, and anything clinically significant gets documented there. The messenger is the conversation channel, not the chart. Treating a disappearing chat as a clinical record is how practices get into trouble.</p>
<p><strong>Real encryption cuts both ways.</strong> If the server can&#8217;t read messages, the server also can&#8217;t recover them. A clinician who loses their device loses that history. That&#8217;s the honest cost of the guarantee, and any vendor offering both perfect confidentiality and full admin recovery is not offering the first one.</p>
<p><strong>Self-hosting is real work.</strong> Someone patches the server, takes the backups, and holds the keys to the infrastructure. A practice without IT capability may genuinely be better served by a managed vendor with a signed agreement — and that&#8217;s a legitimate answer, not a failure.</p>
<h2>Why it&#8217;s interesting anyway</h2>
<p>The reason this matters isn&#8217;t that it&#8217;s free — it&#8217;s that the trade-off clinics have been living with was always false. The choice was never &#8220;consumer messenger or nothing.&#8221; It was that the alternatives were priced and packaged for hospital systems, so smaller practices used WhatsApp and hoped.</p>
<p>A source-available framework where the server provably cannot read your patients&#8217; messages, where retention is yours to set, where no administrator can open a consultation, and where the data never leaves your jurisdiction is a different starting point. It doesn&#8217;t make you compliant, and it doesn&#8217;t do video. But for the everyday traffic of modern care — the photo, the follow-up question, the quick word with a colleague — it is a considerably better foundation than the app your patients also use to send memes.</p>
<p>The messaging plugins are source-available under the platform&#8217;s licence and free for commercial use below a defined revenue threshold. Technical details are in the <a href="https://vbwd.cc/docs">developer documentation</a> and the <a href="https://vbwd.cc/architecture">architecture overview</a>; the source is on <a href="https://github.com/VBWD-platform/">GitHub</a>.</p>
<p><em>General information for practice and technology decision-makers, not legal, regulatory, or medical advice. Compliance obligations vary by country and speciality — consult your data protection officer and legal counsel before deploying any system that handles patient information.</em></p>
</div><p>The post <a href="https://ziba.guru/2026/07/your-patients-x-rays-are-on-whatsapp-heres-a-secure-alternative-clinics-can-run-themselves/">Your Patients’ X-Rays Are on WhatsApp. Here’s a Secure Alternative Clinics Can Run Themselves.</a> first appeared on <a href="https://ziba.guru">Ziba Guru</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://ziba.guru/2026/07/your-patients-x-rays-are-on-whatsapp-heres-a-secure-alternative-clinics-can-run-themselves/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>VBWD for Doctors: Own Your Patient Records, Scheduling, and Secure Messaging</title>
		<link>https://ziba.guru/2026/07/vbwd-for-doctors-own-your-patient-records-scheduling-and-secure-messaging/</link>
					<comments>https://ziba.guru/2026/07/vbwd-for-doctors-own-your-patient-records-scheduling-and-secure-messaging/#respond</comments>
		
		<dc:creator><![CDATA[Louis Phaigh]]></dc:creator>
		<pubDate>Mon, 13 Jul 2026 16:14:50 +0000</pubDate>
				<category><![CDATA[Health Technology]]></category>
		<category><![CDATA[Medicine]]></category>
		<category><![CDATA[doctors]]></category>
		<category><![CDATA[healthtech]]></category>
		<category><![CDATA[patient-records]]></category>
		<category><![CDATA[scheduling]]></category>
		<category><![CDATA[secure-messaging]]></category>
		<category><![CDATA[vbwd]]></category>
		<guid isPermaLink="false">https://ziba.guru/2026/07/vbwd-for-doctors-own-your-patient-records-scheduling-and-secure-messaging/</guid>

					<description><![CDATA[<p>Less admin, more control: appointments, patient portals, secure doctor–patient messaging and an AI assistant grounded in your practice&#8217;s content — on a platform where you own the data. Doctors are tired of clinical software that locks in their data and adds admin; VBWD gives clinicians scheduling, records and secure messaging they actually control. You did</p>
<p>The post <a href="https://ziba.guru/2026/07/vbwd-for-doctors-own-your-patient-records-scheduling-and-secure-messaging/">VBWD for Doctors: Own Your Patient Records, Scheduling, and Secure Messaging</a> first appeared on <a href="https://ziba.guru">Ziba Guru</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><strong>Less admin, more control: appointments, patient portals, secure doctor–patient messaging and an AI assistant grounded in your practice&#8217;s content — on a platform where you own the data.</strong></p>
<p>Doctors are tired of clinical software that locks in their data and adds admin; VBWD gives clinicians scheduling, records and secure messaging they actually control.</p>
<div>
<p>You did not go to medical school to spend your evenings fighting a scheduling screen. Yet most clinicians now run their practice on software they do not control: a portal vendor holds the patient list, an appointment tool holds the calendar, a messaging add-on holds the conversations, and each one bills monthly while quietly deciding what you can export. When you want to move, you find out the data was never really yours.</p>
<p>VBWD takes the opposite starting point. It is a self-hosted, source-available platform you run on your own server, assembled from a small agnostic core plus plugins for the parts of practice life you actually use: booking, patient accounts, secure messaging, an on-site chatbot, membership care plans, and a loyalty credit system. This is a practical look at what a clinical day looks like on top of it, and an honest account of what it is and is not.</p>
<h2>The problem: rented software, borrowed data</h2>
<p>The frustration is rarely one big failure. It is the accumulation of small ones. A booking system that cannot express &#8220;I do not take new patients on Fridays.&#8221; A patient portal that emails you a CSV instead of an API. A messaging tool that stores threads in a jurisdiction you never chose. And the standing cost of administration: reminders that go out by hand, routine questions that interrupt a consultation, patients who cannot see their own next appointment without phoning reception.</p>
<p>Underneath all of it is lock-in. If the record of who your patients are, when they come, and what you have told them lives on someone else&#8217;s infrastructure, your practice is a tenant. VBWD is built so that the practice is the landlord.</p>
<h2>Your calendar, your availability</h2>
<p>Start with the part of the day you touch most: the schedule. The booking function is a plugin that models <em>your</em> availability, not a generic grid. You define when you see patients, how long each appointment type runs, and where the gaps are. Patients with an account can self-book into the slots you have opened, which removes a large share of the phone-and-callback churn without handing the calendar to a third party.</p>
<p>Because availability is yours to define, the awkward real-world rules fit: buffer time between patients, a hard stop before lunch, blocked mornings for home visits. You are not bending your week to match the tool&#8217;s assumptions. The <a href="https://vbwd.cc/plugins">booking and scheduling plugin</a> is one of several you can enable or leave off depending on how your practice runs.</p>
<h2>Patient accounts, and the patients who are yours</h2>
<p>Every patient can have an account with their own portal: their upcoming appointments, their history with you, their messages. From the clinician side you see your patients — the people who belong to your practice — rather than a slice of some shared vendor pool. Access is governed by granular per-role permissions, so a receptionist, a nurse, and a physician each see exactly what their role warrants and nothing more. That separation matters both for privacy and for the plain question of who is allowed to open what.</p>
<p>The portal also does quiet administrative work. A patient who can see their own next visit, reschedule within your rules, and read a follow-up note is a patient who generates fewer interruptions. Less admin is not a slogan here; it is the direct result of giving patients a controlled window into the data that is already about them.</p>
<h2>Secure messaging for follow-ups and results</h2>
<p>The messenger is a plugin for secure doctor–patient communication: sending a follow-up, letting someone know results are ready to discuss, answering a logistical question between visits. Because it lives inside the same platform as the accounts and the calendar, a message is attached to a real patient in your practice, not floating in a separate inbox.</p>
<p>Be clear about the boundary. This is general secure communication. It is not a telemedicine system, not a clinical-decision tool, and not a substitute for examining a patient or exercising judgement. &#8220;Your results are back, let&#8217;s book a call&#8221; is what it is for. Diagnosis over chat is not. Keeping that line sharp protects both you and the patient.</p>
<h2>A chatbot that only knows your practice</h2>
<p>Routine questions are a tax on attention. Where are you located, do you take walk-ins, how do I prepare for this test, what are your hours over the holiday. VBWD includes an LLM-based retrieval chatbot grounded in your own practice content — your pages, your policies, your FAQs — so it answers from what you have actually published rather than from the open internet.</p>
<p>Two design choices are worth understanding. First, the bot rides a search seam that deliberately blocks privacy-sensitive slices of the system. It is built so a general-purpose assistant does not surface patient records; it should be talking about your opening hours, not about anyone&#8217;s chart. Second, retrieval runs through an LLM connection manager, so you decide which model backend answers and under what configuration. You can read how the retrieval and permission seams fit together in the <a href="https://vbwd.cc/architecture">platform architecture</a>.</p>
<p>The honest caveat: a language model can be wrong. Keep a human path open. The bot is there to absorb the routine so you are interrupted less, not to be the last word on anything that matters clinically.</p>
<h2>Care plans and a reason to come back</h2>
<p>Two plugins address the business side of continuity without turning your practice into a storefront. Subscriptions and membership let you offer structured care plans — a recurring wellness membership, a managed-condition programme, a bundle of visits — billed on a schedule you define. For patients who want an ongoing relationship rather than one-off visits, this formalises it.</p>
<p>Alongside that sits a token, or credit, loyalty system. It rewards the behaviours a healthy practice depends on: returning for follow-up, keeping appointments, referring family or friends. Credits accrue and can be recognised in ways you set. It is a modest, optional layer, but for a practice that lives on long-term relationships it gives repeat engagement something concrete behind it. Both sit among the practice functions listed under <a href="https://vbwd.cc/features">the platform&#8217;s features</a>.</p>
<h2>The part that actually matters: you own the data</h2>
<p>Here is the structural difference. VBWD is self-hosted. It runs on infrastructure you choose, on a stack of Python and Flask, PostgreSQL, Redis, and a Vue 3 front end, packaged with Docker. If you host it on EU-resident infrastructure, your patient data resides where you put it — data residency by architecture, not by a vendor&#8217;s promise. The practice is the data controller. There is no upstream company holding a copy and setting export terms.</p>
<p>The licensing follows the same logic. VBWD is source-available under BSL 1.1: free to run, including commercially, until attributable sales cross a defined threshold, and it converts to Apache-2.0 over time. You can read the source, audit what it does with patient data, and modify it. That is a categorically different relationship than a closed portal where you take the vendor&#8217;s word for how records are handled.</p>
<h2>Honest limits</h2>
<p>Ownership comes with responsibility, and you should hear the boundaries plainly.</p>
<ul>
<li>VBWD is <strong>not</strong> a certified electronic health record and <strong>not</strong> a medical device. It is a practice platform, not a clinical-records system with regulatory clearance.</li>
<li>It makes <strong>no</strong> claim of HIPAA certification or any equivalent. Self-hosting on EU infrastructure gives you data residency and controller status; it does not by itself discharge your regulatory duties.</li>
<li>Because you are the data controller, the lawful basis for processing, retention policy, consent, and any compliance obligations for clinical records remain <em>your</em> responsibility as the clinician or operator.</li>
<li>The messenger is general secure communication, not telemedicine. The chatbot can be wrong and must never replace clinical judgement or a human contact route.</li>
<li>Self-hosting means someone maintains the server, backups, and updates — you, or someone you pay. That is the price of control.</li>
</ul>
<p>None of this is a reason to avoid the platform. It is a reason to run it with your eyes open, the same way you would adopt any tool that touches patient care. The <a href="https://vbwd.cc/docs">documentation</a> is the place to work through hosting, roles, and setup before you commit real patients to it.</p>
<h2>The takeaway</h2>
<p>A clinician&#8217;s version of &#8220;good software&#8221; is quiet: the calendar reflects how you actually work, patients handle their own bookings and see their own history, routine questions get answered before they reach you, follow-ups go out securely, and the record of it all sits on infrastructure you control. VBWD assembles that from parts you can turn on one at a time, on a source-available base you are free to inspect.</p>
<p>It will not sign your compliance paperwork or replace your judgement, and it does not pretend to. What it does is stop your practice from being a tenant in someone else&#8217;s system. For a doctor who wants less administration and genuine control over the relationship with each patient, that ownership is the whole point.</p>
<h2>Learn more about VBWD</h2>
<p>VBWD is a self-hosted, source-available platform for building subscription products, marketplaces, and AI-powered apps. Explore it further:</p>
<ul>
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Website and documentation: <a href="https://vbwd.cc">vbwd.cc</a> — see the <a href="https://vbwd.cc/plugins">plugins</a>, <a href="https://vbwd.cc/architecture">architecture</a>, and <a href="https://vbwd.cc/docs">developer docs</a>.</li>
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Source code and plugins on GitHub: <a href="https://github.com/VBWD-platform/">github.com/VBWD-platform</a></li>
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3a5.png" alt="🎥" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Watch VBWD in action: <a href="https://www.youtube.com/watch?v=JW6x7zFn-8w">demo video 1</a> and <a href="https://www.youtube.com/watch?v=HJqBPMngO5Y&#038;t=4s">demo video 2</a></li>
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bc.png" alt="💼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Follow the project on LinkedIn: <a href="https://www.linkedin.com/company/vbwd/">linkedin.com/company/vbwd</a></li>
</ul>
</div><p>The post <a href="https://ziba.guru/2026/07/vbwd-for-doctors-own-your-patient-records-scheduling-and-secure-messaging/">VBWD for Doctors: Own Your Patient Records, Scheduling, and Secure Messaging</a> first appeared on <a href="https://ziba.guru">Ziba Guru</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://ziba.guru/2026/07/vbwd-for-doctors-own-your-patient-records-scheduling-and-secure-messaging/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
