Skip to content
Snippets Groups Projects
Commit 8d1709ea authored by Nigel Reed's avatar Nigel Reed
Browse files

Attempt to fix sysop paged emails not showing up

In issue 740, Keyop reported that emails with a body are not
showing up in the iPhone email client. This just adds the
subject to the body of the email. Tested and approved by
Keyop.
parent d47eda09
No related branches found
No related tags found
1 merge request!447Attempt to fix sysop paged emails not showing up
Pipeline #6517 passed
...@@ -612,7 +612,7 @@ bool sbbs_t::sysop_page(void) ...@@ -612,7 +612,7 @@ bool sbbs_t::sysop_page(void)
if(!(sys_status&SS_SYSPAGE)) { if(!(sys_status&SS_SYSPAGE)) {
logline("C", "paged sysop for chat"); logline("C", "paged sysop for chat");
SAFEPRINTF2(str, "%s paged you to chat from node %u", useron.alias, cfg.node_num); SAFEPRINTF2(str, "%s paged you to chat from node %u", useron.alias, cfg.node_num);
notify(&cfg, 1, str, NULL); notify(&cfg, 1, str, str);
ftouch(syspage_semfile); ftouch(syspage_semfile);
char topic[128]; char topic[128];
SAFEPRINTF(topic, "page/node/%u", cfg.node_num); SAFEPRINTF(topic, "page/node/%u", cfg.node_num);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment