Forum Replies Created
-
AuthorPosts
-
Hi Lucas,
When enabled send the current ambient noise RSSI;
When disabled send the RSSI when the data was received last
time.When I have some time I’m going also to do the test you proposed.
Bye Renzo
3 June 2022 at 08:10 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21092Hi Sebastian,
does It work with the change or without them?
Bye Renzo2 June 2022 at 08:17 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21090Mmmm.. I think you don’t have the last version of the library.
The position of inserted lines is wrong.Tomorrow I try to give you a package to test.
Bye Renzo
1 June 2022 at 08:08 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21069Hi Sebastian,
I found this, CPanel don’t use standard response, or better return multiple line in the connection response.Try to add these 2 lines
awaitSMTPResponse(client); awaitSMTPResponse(client);
in the EMailSender.cpp at line 523
and in the
setup()
before send add
setEHLOCommand(true);
31 May 2022 at 21:54 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21062I must do some tests, which kind of microcontroller do you use?
31 May 2022 at 06:55 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21056Hi Sebastian,
I find some similar issues and seems that It’s a limitation of your email provider like this.Which provider do you use?
Hi hahah,
please share the code to check if there are some issues.
Bye RenzoIt seems a common problem,
https://github.com/espressif/esp-idf/issues/8409
esp32.com/viewtopic.php?t=3155try to add all the code.
Bye Renzo
You must also change the ESP32 configuration from
#ifndef DEFAULT_FTP_SERVER_NETWORK_TYPE_ESP32 #define DEFAULT_FTP_SERVER_NETWORK_TYPE_ESP32 NETWORK_ESP32 #define DEFAULT_STORAGE_TYPE_ESP32 STORAGE_FFAT #endif
to
#ifndef DEFAULT_FTP_SERVER_NETWORK_TYPE_ESP32 #define DEFAULT_FTP_SERVER_NETWORK_TYPE_ESP32 NETWORK_ESP32 #define DEFAULT_STORAGE_TYPE_ESP32 STORAGE_SD #endif
use this topic for feedback.
Bye Renzo
Hi hahah,
the library use the FS command settings, so for now if you enter in the FtpServer.h file and substitute these lines probably work:#include <SD.h> #define STORAGE_MANAGER SD
with
#include "SD_MMC.h" #define STORAGE_MANAGER SD_MMC
give me feedback.
I do the integration as soon as possible, but I don’t know when 😛 .
I finally release an EMailSender version that supports SSL also for Ethernet, I tested It with STM32 and works well, but needs>64Kb.
Bye RenzoHi Lucas,
It’s very strange, can you attach your code.
It seems a memory leak.
Bye RenzoHi John,
For your features, I can tell you that just now that I’ll also develop those features soon, with a timer.The current PCB can’t raise 8Km distances, but I think the max length is about 5Km. With the future new version (already projected), I changed something to raise that distance.
Bye Renzo
Try to put a better external 5v power supply to the LoRa device.
If in your code there isn’t a memory leak there isn’t a reason for that.
Bye Renzo -
AuthorPosts