Re: Sending mail in 4D v11 on Mac

2019-05-13 Thread Two Way Communications via 4D_Tech
I was afraid this would be the answer.

I hope this customer is now convinced he has to upgrade ;-)


Regards,

Rudy Mortier
Two Way Communications bvba 



> On 14 May 2019, at 01:03, Keisuke Miyako via 4D_Tech <4d_tech@lists.4d.com> 
> wrote:
> 
> that won't work.
> 
> besides, STARTTLS is not just about starting with the 587 port instead of 25.
> 
> a transition to TLS must follow.
> 
> not possible in v11 Internet Commands unless you implement SMTP using 
> low-level TCP commands.
> 
> 2019/05/14 7:05、Tom Dillon via 4D_Tech 
> <4d_tech@lists.4d.com>のメール:
> Is it possible to pass the port with a ":587" added to the host?
> 
> 
> 
> **
> 4D Internet Users Group (4D iNUG)
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **

**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Sending mail in 4D v11 on Mac

2019-05-13 Thread Keisuke Miyako via 4D_Tech
that won't work.

besides, STARTTLS is not just about starting with the 587 port instead of 25.

a transition to TLS must follow.

not possible in v11 Internet Commands unless you implement SMTP using low-level 
TCP commands.

2019/05/14 7:05、Tom Dillon via 4D_Tech 
<4d_tech@lists.4d.com>のメール:
Is it possible to pass the port with a ":587" added to the host?



**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Sending mail in 4D v11 on Mac

2019-05-13 Thread Tom Dillon via 4D_Tech
Bruno LEGAY via 4D_Tech wrote:

>There is no way port 587 will work with older versions of 4D.

Is it possible to pass the port with a ":587" added to the host?

-- 
   --
   Tom Dillon  375 S Main St #405
   DataCraft   Moab, UT 84532
   tomdil...@datacraft-inc.com   720/209-6502
   --
  Sometimes the only choice is to shoot oneself
  in the other foot. --- Sunastar
   --


**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Sending mail in 4D v11 on Mac

2019-05-13 Thread Bruno LEGAY via 4D_Tech
Hi,

Port 587 is smtp with START_TLS.
The connexion start in clear (un encrypted) and upon smtp protocol negotiation 
the connexion will be switched to secured/SSL/TLS.

This feature was added in 4D IC v13.2. 

There is no way port 587 will work with older versions of 4D.

You can try explicit SSL/TSL on port 465 with 
SMTP_Send( ... ;1)

Having said that, you are facing a problem of an old tool with outdated 
security protocols and it could be that the ssl/tls version in 4D IC v11 are 
not compatible with current smtp servers (or rejected because considered 
outdated/unsafe). 

HTH
Bruno

**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Sending mail in 4D v11 on Mac

2019-05-13 Thread Two Way Communications via 4D_Tech
Hi guys,

This is a mystery to me.

I use a simple peace of code to send an e-mail message. This code works 
perfectly in v15 and higher.

$vError:=SMTP_Charset (1;1)
$vError:=SMTP_SetPrefs (1;1;0)
$result:=IT_SetPort (12;587)
$result:=SMTP_New ($smtp_id)
$result:=SMTP_Host ($smtp_id;[Settings]EMA_smtp)
$result:=SMTP_From ($smtp_id;[Settings]EMA_adres)
$result:=SMTP_To ($smtp_id;[Settings]EMA_adres;0)
$result:=SMTP_Subject ($smtp_id;$EMAsubject)
$result:=SMTP_Body ($smtp_id;$EMABody)
$result:=SMTP_Auth ($Smtp_id;[Settings]EMA_login;[Settings]EMA_paswoord;0)  
//0=highest available, 1=plain, 2=LOGIN, 3=CRAM-MD5
$result:=SMTP_Send ($Smtp_id)

However, a customer of mine who still uses 4D v11 (yes, I know…) is running the 
same code, but gets an error 10113 (Error with Authentication)

Any idea how I can get this to work in v11?


Regards,

Rudy Mortier


> On 13 May 2019, at 15:59, Chip Scheide via 4D_Tech <4d_tech@lists.4d.com 
> > wrote:
> 
> you could set the highlight row, 
> then do whatever,
> then set the scroll position back
> and (if needed) un set the highlight row
> 
> Chip
> On Sat, 11 May 2019 10:06:22 -0400, Alan Tilson via 4D_Tech wrote:
>> Hello again,
>> What I meant if it wasn't clear is can I get this to work with an Output
>> Form showing a list of records?
>> Thanks!
>> Alan
>> 
>> On Fri, May 10, 2019 at 5:31 PM Alan Tilson > > wrote:
>> 
>>> If I have selected a record HIGHLIGHT RECORDS works fine, but often I
>>> haven't.
>>> Alan
>>> 
>>> On Fri, May 10, 2019 at 5:30 PM Alan Tilson >> > wrote:
>>> 
 Hello out there,
 I cannot get OBJECT GET SCROLL POSITION to work with a list form.
 OBJECT GET SCROLL POSITION([table]field;scrollPosition) leaves
 scrollPosition at zero, wherever I have scrolled.
 Thanks!
 Alan
 
 On Tue, Jun 12, 2018 at 6:31 PM Richard Wright via 4D_Tech <
 4d_tech@lists.4d.com > wrote:
 
> Thanks, Miyako, that works!
> 
> 
>> From: Keisuke Miyako > >
>> To: 4D iNug Technical <4d_tech@lists.4d.com 
>> >
>> Subject: Re: Scroll position of display-type subform
>> Message-ID: <30f1fc18-68d9-4b1b-9413-aba4d7db5...@4d.com 
>> >
>> Content-Type: text/plain; charset="utf-8"
>> 
>> haven't tried,
>> but I wonder if CONVERT COORDINATES would be smart enough to take into
> account the scrolled amount of a detail subform.
>> 
>> 
> http://doc.4d.com/4Dv16/4D/16.3/CONVERT-COORDINATES.301-3651760.en.html 
> 
>> 
>>> 2018/06/12 7:37、Richard Wright via 4D_Tech <4d_tech@lists.4d.com>
> のメール:
>>> I need to get the position of an object on a display-type subform in
> global coordinates and the subform may be scrolled.
>> 
> 
> **
> 4D Internet Users Group (4D iNUG)
> FAQ:  http://lists.4d.com/faqnug.html
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **
 
 
>> **
>> 4D Internet Users Group (4D iNUG)
>> Archive:  http://lists.4d.com/archives.html 
>> 
>> Options: https://lists.4d.com/mailman/options/4d_tech 
>> 
>> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com 
>> 
>> **
> ---
> Gas is for washing parts
> Alcohol is for drinkin'
> Nitromethane is for racing 
> **
> 4D Internet Users Group (4D iNUG)
> Archive:  http://lists.4d.com/archives.html 
> 
> Options: https://lists.4d.com/mailman/options/4d_tech 
> 
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com 
> 
> **



Met vriendelijke groeten,

Rudy Mortier
Two Way Communications bvba 



**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**