Protocol "smtps" is not supported (or) Disabled in libcurl

I dont know where to put the source code, how to download the yocto source code for mangOH board?
in our curl (7.61.0) is already pre installed).

Please download here:
https://source.sierrawireless.com/resources/airprime/software/wp76xx/wp76xx-firmware-release-13,-d-,1-components/#sthash.xop4kkpH.dpbs

mangoh@mangoh-vm:~/Downloads$ swiflash -f -m wp76xx -i WP76xx_Release13.1_GENERIC_GCF.spk
Detecting USB of the target
No device connected
I try to firmware upgrade i got NO device connected.how to solve this problem

you can use the windows EXE one click.

thankyou for your reply
I have downloaded the yocto source code and also replaced curl 7.61.0.bb, but i don’t know how to rebuild the yocto image?

  1. sudo apt-get install bison build-essential chrpath cifs-utils cmake coreutils curl desktop-file-utils diffstat docbook-utils doxygen fakeroot flex g++ gawk gcc git-core gitk graphviz help2man libgmp3-dev libmpfr-dev libreadline6-dev libsdl-dev libtool libxml2-dev libxml-libxml-perl make m4 ninja-build python-pip python-jinja2 python-pysqlite2 quilt samba scons sed subversion texi2html texinfo unzip wget texinfo chrpath

  2. sudo apt-get remove ccache

  3. sudo dpkg-reconfigure dash
    Answer “No” to the question.

  4. go into the yocto folder and type “make”.

  5. after compilation, the image will be build_bin/tmp/deploy/images/swi-mdm9x28-wp/yocto_wp76xx.4k.cwe

it shows sudo and make command not found

Did you install all the tools on your ubuntu pc?

yes,I think there is no problem in pc side
if i do the ssh connection,root@swi-mdm9x28-wp:~# mangoh@mangoh-vm:~$ ssh root@192.168.2.2.make and sudo commands are not found

curl version in mangOH as shown in below file

In the version i don’t know how to enable the SMTPS and SSl protocols? can you please help me to do this?

Of course the make command is type in pc side instead of module.!!!

Maybe you can use my image which is based on R13.3.

can i use this to wp7608

I think so, but you need to upgrade the FW to R13.3.

present firmware version are using in the board,as show in below

Firmware Version: SWI9X07Y_02.28.03.05 000000 jenkins 2019/07/08 11:04:16
Bootloader Version: SWI9X07Y_02.28.03.05 000000 jenkins 2019/07/08 11:04:16

this is my module:
root@swi-mdm9x28-wp:~# cm info
Device: WP7605
IMEI: 353532100020465
IMEISV: 6
FSN: 2A917285070404
Firmware Version: SWI9X07Y_02.28.03.05 000000 jenkins 2019/07/08 11:04:16
Bootloader Version: SWI9X07Y_02.28.03.05 000000 jenkins 2019/07/08 11:04:16
MCU Version:
PRI Part Number (PN): 9908705
PRI Revision: 002.006
Carrier PRI Name: SOFTBANK
Carrier PRI Revision: 001.028_000
SKU: 1104208
Last Reset Cause: Power Down
Resets Count: Expected: 93 Unexpected: 0

Thankyou jyijyi
finally I’m getting smtp protocol in curl

root@swi-mdm9x28-wp:~# curl -V
curl 7.61.0 (arm-poky-linux-gnueabi) libcurl/7.61.0 OpenSSL/1.0.2p zlib/1.2.11 libssh2/1.8.0
Release-Date: 2018-07-11
Protocols: file ftp ftps http https scp sftp smtp smtps
Features: AsynchDNS IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP UnixSockets HTTPS-proxy
thankyou

hi

Im trying to send mail by using curl commands

curl --url ‘smtps://smtp.gmail.com:465’ --ssl-reqd --mail-from ‘username@gmail.com’ --mail-rcpt ‘john@gmail.com’ --upload-file mail.txt --user ‘username@gmail.com:password’ --insecure

but Im getting error like curl: (67) Login denied.please tell me how to solve this problem

I am not curl expert, also this is out of the mangoh topic.
Please double check on Ubuntu Linux PC first.

seems same problem on this one:

I don’t see problem with the following steps:

  1. Go to https://myaccount.google.com/security
  2. Go to “Less secure app access” section
  3. Turn on the access
  4. save the following to /tmp/mail.txt

From: “User Name” username@gmail.com
To: “John Smith” john@example.com
Subject: This is a test

Hi John,
I’m sending this mail with curl thru my gmail account.
Bye!


  1. now in WP module console, type the following:
    curl --url ‘smtps://smtp.gmail.com:465’ --ssl-reqd --mail-from ‘username@gmail.com’ --mail-rcpt ‘john@example.com’ --upload-file /tmp/mail.txt --user ‘username@gmail.com:password’ --insecure