Hello All,
Please find Kconfig attachment which was missed in last mail.
Regards,
Surya
From: Surya prakash Verma [mailto:[email protected]]
Sent: Tuesday, January 14, 2020 3:50 PM
To: [email protected]
Subject: SMTP send mail example build failure
[email protected] appears similar to someone who previously
sent you email, but may not be that person. Learn why this could be a
risk<http://aka.ms/LearnAboutSenderIdentification>
Feedback<http://aka.ms/SafetyTipsFeedback>
________________________________
**This is an external email. Please check the sender’s full email address (not
just the sender name) and exercise caution before you respond or click any
embedded link/attachment.**
________________________________
Hello All,
I am trying to build SMTP send mail example in NuttX 8.2 but getting compiler
error as shown in attachment.
1. Nuttx/configure->Application configure->Network Utilities->smtp
2. Nuttx/configure->Application configure->example->send mail example
I have analyze error and observed that following configuration is not available
for configuration.
CONFIG_EXAMPLES_SENDMAIL_RECIPIENT
CONFIG_EXAMPLES_SENDMAIL_IPADDR
CONFIG_EXAMPLES_SENDMAIL_DRIPADDR
CONFIG_EXAMPLES_SENDMAIL_NETMASK
I able to build by adding above configuration in apps/example/sendmail/Kconfig.
Modified Kconfig attached to this mail.
Did anyone face similar issue?
Thanks & Regards,
Surya
________________________________
Disclaimer: This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. If you are not the intended recipient of this message , or if this
message has been addressed to you in error, please immediately alert the sender
by reply email and then delete this message and any attachments. If you are not
the intended recipient, you are hereby notified that any use, dissemination,
copying, or storage of this message or its attachments is strictly prohibited.
Email transmission cannot be guaranteed to be secure or error-free, as
information could be intercepted, corrupted, lost, destroyed, arrive late or
incomplete, or contain viruses. The sender, therefore, does not accept
liability for any errors, omissions or contaminations in the contents of this
message which might have occurred as a result of email transmission. If
verification is required, please request for a hard-copy version.
________________________________
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config EXAMPLES_SENDMAIL
tristate "Sendmail example"
default n
---help---
Enable the sendmail example
if EXAMPLES_SENDMAIL
comment "IPv4 addresses"
config EXAMPLES_SENDMAIL_RECIPIENT
string "recipient address"
default "[email protected]"
config EXAMPLES_SENDMAIL_IPADDR
hex "Sender IP address"
default 0x0a000002
config EXAMPLES_SENDMAIL_DRIPADDR
hex "Default routing IP address"
default 0x0a000001
config EXAMPLES_SENDMAIL_NETMASK
hex "Network Mask"
default 0xffffff00
endif # EXAMPLES_SENDMAIL