MyBB Community Forums

Full Version: How to disable the Request Read Receipt and Save a Copy
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Greeting,

Can anyone please guide how to disable this above mentioned things

else if(!$send_errors)
	{
		// New PM, so load default settings
		if($mybb->user['signature'] != '')
		{
			$optionschecked['signature'] = 'checked="checked"';
		}
		if($mybb->usergroup['cantrackpms'] == 1)
		{
			$optionschecked['readreceipt'] = 'checked="checked"';
		}
		$optionschecked['savecopy'] = 'checked="checked"';
	}

Thx
OK found the solution myself.
For the read receipt, you can disable it through group permissions:
Admin CP --> Users & Groups --> Groups --> *edit the Registered usergroup* --> Users & Permissions
Can track sent private messages? No
Can deny message receipt notifications? No

Admin CP --> Templates & Style --> Templates --> *expand your set* --> Private Message Templates --> private_send
Find and remove:
<label><input type="checkbox" class="checkbox" name="options[savecopy]" value="1" tabindex="7" {$optionschecked['savecopy']} />{$lang->options_save_copy}</label><br />
<label><input type="checkbox" class="checkbox" name="options[readreceipt]" value="1" tabindex="8" {$optionschecked['readreceipt']} />{$lang->options_read_receipt}</label><br />
Well actually I commented out those lines.