Re: Private Messaging (pun_pm)
Requests:
- Apply email flood protection to prevent pm flooding.
- Add BBCode buttons.
- Delete all PMs belonging to the user when the account is deleted.
Thanks.
You are not logged in. Please login or register.
PunBB Forums → Supported extensions → Private Messaging (pun_pm)
Requests:
- Apply email flood protection to prevent pm flooding.
- Add BBCode buttons.
- Delete all PMs belonging to the user when the account is deleted.
Thanks.
- Apply email flood protection to prevent pm flooding.
I didn't get it. What exactly do you want?
- Add BBCode buttons.
Almost done. You can download latest versions of pun_pm and pun_bbcode (from SVN) and try this feature.
- Delete all PMs belonging to the user when the account is deleted.
I assume you meant to clear his inbox before deleting. This will be implemented soon.
Would be nice to be able to send message to several recipients...
Would be nice to be able to send message to several recipients...
To make spammer's life easier?
Maybe it makes sense only for admins.
nmb wrote:- Apply email flood protection to prevent pm flooding.
I didn't get it. What exactly do you want?
It is possible to flood an inbox/send pms in a short period because there is no wait time between private messages. Perhaps, use the email flood setting with private messaging.
Warning: implode() [function.implode]: Invalid arguments passed in C:\xampp\htdocs\punbb134\extensions\pun_pm\functions.php on line 279
Clicking the Compose Message link produces the above error message. (v1.2.7)
Ok, I've added flood protection to features planned for next releases.
I've just released pun_pm 1.2.8 where I've fixed the bug.
I assume you meant to clear his inbox before deleting. This will be implemented soon.
How about also deleting all the PMs sent by the deleted user? For example, deleting a spammer account that sent spam private messages. I prefer that the receivers do not see these spam PMs.
Do your forum users really suffer from spam PMs? For example, noone here complains of it.
It's not right to delete sent messages for every user being deleted. And my point is that an additional option (delete sent messages or not) is an excess functionality.
Do your forum users really suffer from spam PMs? For example, noone here complains of it.
This has happened twice. We had to use phpMyAdmin to delete these spam PMs from our members' inboxes.
8k84 wrote:Would be nice to be able to send message to several recipients...
To make spammer's life easier?
Maybe it makes sense only for admins.
To make easier life of those who need to send messages to several recipients.
If everything that could be misused was blocked, we'd still live happily on trees.
There is one feature I wouldn't mind seeing, an upgrade feature. If some one has upgraded their forum software from 1.2 to 1.3 and had been using connors pun pm. I am having to resort to trying to do it all manually.
Would be nice to be able to send message to several recipients...
This feature is hard to make because of how pun_pm is made. Consider the case when a user sends a message and another user receives it. Actually there are no copies of the message for these two users. There is only one row corresponding to the message in the DB table.
The thing I can do is to convert a message that has been sent (has been or saved as draft) to some receivers into some messages having only one receiver. And there will be some messages in the Outbox, not one.
Please replace
require $ext_info['path'].'/functions.php';
with
require_once($ext_info['path'].'/functions.php');
in manifest.xml.
I'm writing an extension, which should use pun_pm functions, but a redefinition error appears, that I cannot avoid.
When you are replying to a message and BBCode is disabled, the original message keeps getting included to the answer with
[quote=sender]message[/quote]
by default.
Valuable information.
Please replace
require $ext_info['path'].'/functions.php';
with
require_once($ext_info['path'].'/functions.php');
in manifest.xml.
Fixed: http://punbb.informer.com/trac/changeset/1435
When you are replying to a message and BBCode is disabled, the original message keeps getting included to the answer with
[quote=sender]message[/quote]
by default.
In Opera 10.10 I can't select any username from usernames list near "To" field.
Also, "check all" doesn't work in my Opera.
Can you add a possibility to enable or disable PM for different user groups, as it realized in pun_poll?
Radovar!
Your wishes are added in feature request
Bug: PHP generating an "undefined index" error at line 383 in file functions.php:
elseif ($forum_config['p_message_all_caps'] == '0' && utf8_strtoupper($body) == $body && !$forum_user['is_admmod'])
$forum_page['is_admmod'] must be $forum_user['is_admmod'], I think
Sorry, the code in the previous post was incorrect. This is actual code:
elseif ($forum_config['p_message_all_caps'] == '0' && utf8_strtoupper($body) == $body && !$forum_page['is_admmod'])
No, in current version of pun_pm it's impossible.
How does my admins PM all users at once?
Hi!
I would like to disallow unlimited pm for users but not for admin and moderators.
I wrote, in pun_pm/fonctions.php (only the first line was modified):
if ($forum_config['o_pun_pm_inbox_size'] == 0 || $forum_user['is_admmod'])
{
// Unlimited Inbox!
// Deliver all messages that were sent
$query = array(
'UPDATE' => 'pun_pm_messages',
'SET' => 'status = \'delivered\'',
'WHERE' => 'receiver_id = '.$forum_user['id'].' AND status = \'sent\'',
);
($hook = get_hook('pun_pm_fn_deliver_messages_unlimited_pre_query')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
}
According to you, is it correct?
Thank you!
PunBB Forums → Supported extensions → Private Messaging (pun_pm)
Powered by PunBB, supported by Informer Technologies, Inc.