Re: Drag and drop within a list field

2021-07-16 Thread Curry Kenworthy via use-livecode
Paul: > the data in the custom property look like: > codename1 That's backwards, try this: name1code And with a tab stop, you may not need a custom property! Fields can hold more content than what meets the eye. > foldernameA Do you really need "folder" and "code" spelled out? Redundant

Re: Sending email with TLS (via Outlook) from LC 6.7 based app...

2021-07-16 Thread Ben Rubinstein via use-livecode
Hi Bob, This is very interesting, thank you. Thanks all - I now have four routes to investigate! Ben On 16/07/2021 16:55, Bob Sneidar via use-livecode wrote: So, yes you can set any windows device to operate as an SMTP relay. Server versions have this capability built in. You enable it in

Re: Sending email with TLS (via Outlook) from LC 6.7 based app...

2021-07-16 Thread Bob Sneidar via use-livecode
So, yes you can set any windows device to operate as an SMTP relay. Server versions have this capability built in. You enable it in the features section of Server manager. You can then configure the local side to be an open relay not requiring auth or encryption, and configure the public side

Re: Drag and drop within a list field

2021-07-16 Thread Devin Asay via use-livecode
Hi Paul, Some years back Scott Rossi created a nifty little demo called GetInLine that shows how to do the interface part of drag-reordering. It’s in his archive at http://tactilemedia.com/blog/2018/05/12/blasts-from-the-past/. It might give you a good foundation, even if you don’t use the

Re: Sending email with TLS (via Outlook) from LC 6.7 based app...

2021-07-16 Thread Ben Rubinstein via use-livecode
Aha! I didn't know that curl did SMTP. Thanks Matthias (and thanks Douglas, SwithMail looks like a good alternative). Ben On 16/07/2021 15:32, matthias rebbe via use-livecode wrote: You could send out the emails with the command line tool curl using LC's shell function.

Drag and drop within a list field

2021-07-16 Thread Paul Dupuis via use-livecode
I have a scrolling list field that has contents like: name1 name2 nameA name3 name4 name5 nameB name6 name7 nameC name8 etc. the field has a custom property with the contents and a "type" for each name, so the data in the custom property look like: codename1 codename2 foldernameA codename3

RE: Sending email with TLS (via Outlook) from LC 6.7 based app...

2021-07-16 Thread Douglas A. Ruisaard via use-livecode
I had a very similar problem recently (although I was *not* using LC for the email processing). I found a small but great *free* shareware app called "SwithMail" by "tbare" which solved the same issue of needing TLS support. It's reasonably small (550 Kb) yet has a rich feature set. I'd suggest

Re: Sending email with TLS (via Outlook) from LC 6.7 based app...

2021-07-16 Thread matthias rebbe via use-livecode
You could send out the emails with the command line tool curl using LC's shell function. https://everything.curl.dev/usingcurl/smtp So instead of calling the libSMTP library you create the email according to RFC to have correct smtp headers and sent it using curl through the shell() function.

Sending email with TLS (via Outlook) from LC 6.7 based app...

2021-07-16 Thread Ben Rubinstein via use-livecode
A very venerable app (original version perhaps 15 years ago) is still running on a client's Windows box, every night, processing data and emailing a report. The email is sent using Shao Sean's libSMTP library, which has performed faithfully for all these years. Unfortunately, the client's