[For 1.8] MyConversations: a conversation plugin for MyBB - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Community (https://community.mybb.com/forum-12.html) +--- Forum: Marketplace (https://community.mybb.com/forum-202.html) +---- Forum: Plugins (https://community.mybb.com/forum-203.html) +---- Thread: [For 1.8] MyConversations: a conversation plugin for MyBB (/thread-228262.html) |
RE: MyConversations: a conversation plugin for MyBB - Laird - 2021-08-22 MyConversations version 1.2.2 has just been released. New feature and fixes:
RE: MyConversations: a conversation plugin for MyBB - PARADOX987 - 2021-08-22 is there any option for edit the pms that already have sent ? RE: MyConversations: a conversation plugin for MyBB - Laird - 2021-08-22 (2021-08-22, 02:44 AM)PARADOXP Wrote: is there any option for edit the pms that already have sent ? Not yet, but it's a planned feature for the future. RE: MyConversations: a conversation plugin for MyBB - Laird - 2021-12-11 MyConversations version 1.2.3 has just been released. This is a bugfix and minor feature release. No security issues are involved, so upgrading is not a high priority. New features and fixes:
RE: MyConversations: a conversation plugin for MyBB - Laird - 2022-01-12 MyConversations version 1.2.4 has just been released. New features:
RE: MyConversations: a conversation plugin for MyBB - HLFadmin - 2022-09-23 I note that when the system sends an email notification of a message added to a Conversation, there is a reply-to element such that an inadvertent email reply, rather than a conversation reply, could return contents of the message to the system admin. I have not looked into the coding for the notifications, but it seems there should be at least a "Do not reply to this email" statement, and perhaps it can have a different sending address that is not monitored. This is not a great problem. It has only occurred twice in my small forum. RE: MyConversations: a conversation plugin for MyBB - Laird - 2022-09-23 Yep, this is just the way the MyBB my_mail() function works. It always sets the reply-to header. Even without that header though, it is still possible to accidentally reply to the email address in the "From" header. I don't know of a way to prevent this programmatically, although I have noticed that some platforms set the "From" email address to something like <[email protected]> to give a strong hint. Something like this is probably what you mean by "have a different sending address that is not monitored". And yes, that's a good idea, as well as the "Do not reply to this email" statement that you suggest. I'll add those to my TODO list for this plugin. It might be a while before I act on it though.
RE: MyConversations: a conversation plugin for MyBB - Laird - 2022-09-23 In the meantime, you can partially implement this yourself by editing a "Do not respond"-type message into the cnv_emailbody_newconv and cnv_emailbody_convrepl language strings in the converse.lang.php file.
RE: MyConversations: a conversation plugin for MyBB - HLFadmin - 2022-09-23 I will do that. An easy enough fix that provides adequate warning. Thanks. This is a great plugin. No regrets. RE: MyConversations: a conversation plugin for MyBB - HLFadmin - 2023-01-29 Upgrading to PHP 8.0, I see this warning when managing plugins. MyConversations 1.2.4 The reference is in function cnv_get_unmigrated_pms_sql(). Line 1711 $last_pmid = max($last_pmid, $lrs_plugins[C_CNV]['max_draft_pmid']); which is called in function cnv_get_unmigrated_pms_count() Line 1725 $res = $db->query('SELECT COUNT(*) AS numrows FROM ('.cnv_get_unmigrated_pms_sql().') AS q');
I've been putting off migrating to PHP 8, but should not delay much longer. Mr. Laird, your help is always appreciated. |