Ticket #1485597 (closed Feature Patches: fixed)
always display images
| Reported by: | ldeviator | Owned by: | alec |
|---|---|---|---|
| Priority: | 5 | Milestone: | 0.2-stable |
| Component: | Core functionality | Version: | svn-trunk |
| Severity: | normal | Keywords: | |
| Cc: |
Description
my users don't like to add people to their address book in order to get rid of the display images privacy warning, so I've added an option for them that I thought I'd share
adding this effectively disables the image privacy
program/steps/mail/show.inc
44a45
> // always show images? if not
46c47,51
< if (!$MESSAGE->is_safe
---
> if(!$MESSAGE->is_safe
> && $RCMAIL->config->get('always_show_images')) {
> $MESSAGE->set_safe(true);
> }
> else if (!$MESSAGE->is_safe
and in config/main.inc.php
// display images in mail from all senders $rcmail_config['always_show_images'] = true;
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
