Ticket #1485655 (closed Feature Requests: fixed)

Opened 15 months ago

Last modified 6 months ago

Allow to force IE style headers for attachments in non-HTTPS session

Reported by: Pecisk Owned by:
Priority: 5 Milestone: 0.3.1
Component: Core functionality Version: svn-trunk
Severity: normal Keywords:
Cc:

Description

I suggest to introduce new configuration variable which would force the usage of headers now used specially for attachments while using Internet Explorer and HTTPS. Code in question is in program/include/rcube_share.inc:

if (isset($_SERVER['HTTPS'])) {
   header('Pragma: ');
   header('Cache-Control: ')
}

This is necesary for solutions where PHP code is parsed on non-HTTPS daemon and then delivered trough HTTPS connection to client (Combination of lightttpd and Apache comes into main).

This would work like this: having configuration variable set to true would force to pass such headers to client while providing attachment. "If" block mentioned above just need additional check and vola - it's set.

Change History

Changed 11 months ago by thomasb

  • type changed from Bugs to Feature Requests
  • milestone changed from 0.3-beta to 0.4-beta

Changed 6 months ago by alec

  • status changed from new to closed
  • resolution set to fixed
  • milestone changed from 0.4-beta to 0.3.1

Added 'use_https' option in r2927.

Note: See TracTickets for help on using tickets.