The host does not support SSL connections

This forum is for programmers who have questions about the source code.
Post Reply
pid_user
Posts: 67
Joined: Thu Jun 04, 2015 9:31 am

The host does not support SSL connections

Post by pid_user » Tue Nov 23, 2021 2:58 am

Hello Team,

I need to insert data in EmailMessage table with built in method EmailMessages.Insert(object).
here is the sample code-
EmailMessage emailMessage = new EmailMessage();
emailMessage.PatNum = pat;
emailMessage.MsgDateTime = DateTime.Now;
emailMessage.SentOrReceived = EmailSentOrReceived.Sent;
emailMessage.FromAddress = fromMail;
emailMessage.ToAddress = tomail;
emailMessage.Subject = sub;
emailMessage.BodyText = msg;
EmailMessages.Insert(emailMessage);

when used with OpenDentBusiness 19.4.6 then it''s giving this error- The host does not support SSL connections and the data not inserted.

User avatar
jordansparks
Site Admin
Posts: 5739
Joined: Sun Jun 17, 2007 3:59 pm
Location: Salem, Oregon
Contact:

Re: The host does not support SSL connections

Post by jordansparks » Tue Nov 23, 2021 9:35 am

You should use our API. Direct inserts to the database are not allowed. If you are using a built-in method, then I'm guessing you're using a plug-in. Plug-ins will fail to load in version 21.4 unless they are white listed, and staying white listed will become harder over time. We would probably not allow what you are doing, for example. As for the actual error, I think you have to specify SSL=false (or something like that) in the connection string. Research how to do that on the MySQL website.
Jordan Sparks, DMD
http://www.opendental.com

Post Reply