Commit Graph
25 Commits
Author SHA1 Message Date
TD-er e94cbce20d [Memory] Make memory allocation on ESP8266 2nd heap more stable 2025-02-19 17:44:03 +01:00
TD-er f5eabb429e [Email] Add documentation describing SSL port 465 2024-10-07 10:32:38 +02:00
TD-er 7e04a8cec6 [Email] Clean-up code 2024-10-05 14:13:31 +02:00
TD-er bc56a2eafc [Email] Split N001_Email.ino into N001_data_struct 2024-10-03 15:29:13 +02:00
TD-er 87bca8f140 [Email] Fix issues with different mail server versions 2024-09-23 22:45:23 +02:00
thomastech caffc8ad26 Reverted Notify Max Timeout to 20000mS (was 12000). Notify Log msgs now employ loglevelActiveFor() wrapper. 2024-07-02 15:47:49 -07:00
thomastech d5ca65ea86 (1) Reduced Notify Timeout Limit to 12000mS. (2) Fixed "Reply to" address when provided by Notify Command (via rules). 2024-07-02 12:39:36 -07:00
thomastech ae0984d033 Cleanup Notify log text messages. 2024-07-01 20:03:16 -07:00
thomastech 0b42726f21 Changed Notify SMTP email timeout values to mS (were secs), per TD-er's request. 2024-07-01 19:32:53 -07:00
thomastech 665d9ee01e Added more comments to file. No code change. 2024-07-01 16:16:38 -07:00
thomastech e64a1073cc Preliminary Notify Plugin Changes to restore operation after ISP email server upgrade 2024-07-01 15:25:08 -07:00
TD-er 785952087e [Cleanup] Revert line endings from LF to CRLF 2024-05-31 09:48:23 +02:00
Ton Huisman 3e65e1e7fd [N001] Add support for optional Subject to notify command 2024-04-06 22:28:55 +02:00
TD-er f56453f269 [Email] Fix sending multiple lines in body (#4967)
Fixes: #4967
2024-02-08 22:45:17 +01:00
TD-er 6affa5c48b [Cleanup] Reduce build size. 2023-01-07 21:33:11 +01:00
Ton Huisman 765e7ca2b4 [N001] Update comments 2022-12-29 14:55:29 +01:00
Ton Huisman 28f67ea6c7 [N001] Add timezone offset in Date header 2022-12-29 14:14:27 +01:00
Ton Huisman b419461fe8 [N001] Add Date in nail header 2022-12-28 22:51:28 +01:00
TD-er 6b0474d2a3 [Build] Remove all debug logs when BUILD_NO_DEBUG is set 2022-08-30 17:46:39 +02:00
TD-er 85643ec39d [Cleanup] Uncrustify _N001_Email.cpp 2022-08-24 11:15:02 +02:00
TD-er 2c5d7220ce [Network Timeout] Apply workaround to set timeout in msec on ESP32
WiFiClient has a setTimeout function which expects seconds.
The parent class, Client, does expect msec.
So by casting to its parent and then calling setTimeout, we can again set the timeout in msec.
2022-08-24 10:45:00 +02:00
TD-er 58737d4a5d [Build Version] Generate build version based on date 2022-08-21 12:46:41 +02:00
TD-er 8db3af3a37 [Build] Include ESPEasy_config.h everywhere 2022-08-19 14:04:16 +02:00
TD-er 10cca9ca72 [Log] Call addLogMove where log Strings can be moved instead of copied
This is a macro for:
```
#define addLogMove(L, S)  addToLogMove(L, std::move(S))
```

This will then try to move the constructed string to the log buffer.
If it cannot be moved (e.g. log level is not active), the string will be cleared to free up memory.
2022-02-09 22:28:18 +01:00
TD-er 5c898ff71b [INO to CPP] Rename Nxxx.ino to .h/.cpp 2022-01-31 12:13:10 +01:00