* `Sendmail` upgraded to ESP-Mail-Client v3.4.9 from v1.2.0, using BearSSL instead of MbedTLS * Fix compilation on ESP8266 * Fix compilation * fix compilation
24 lines
459 B
C
24 lines
459 B
C
|
|
#ifndef CUSTOM_ESP_SSLCLIENT_FS_H
|
|
#define CUSTOM_ESP_SSLCLIENT_FS_H
|
|
|
|
#include "../ESP_Mail_FS.h"
|
|
|
|
#if defined(ESP_MAIL_DISABLE_SSL)
|
|
#undef USE_LIB_SSL_ENGINE
|
|
#undef USE_EMBED_SSL_ENGINE
|
|
#endif
|
|
|
|
#if defined(ESP_MAIL_USE_PSRAM)
|
|
#if !defined(ESP_SSLCLIENT_USE_PSRAM)
|
|
#define ESP_SSLCLIENT_USE_PSRAM
|
|
#endif
|
|
#else
|
|
#undef ESP_SSLCLIENT_USE_PSRAM
|
|
#endif
|
|
|
|
#undef ESP_SSLCLIENT_ENABLE_DEBUG
|
|
#undef ESP_SSLCLIENT_ENABLE_SSL_ERROR_STRING
|
|
|
|
#endif
|