Summary | Logout after attaching |
Queue | IMP |
Queue Version | 6.1.4 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | slusarz (at) horde (dot) org |
Requester | asa (at) isac (dot) gov (dot) in |
Created | 09/10/2013 (4317 days ago) |
Due | |
Updated | 12/17/2013 (4219 days ago) |
Assigned | |
Resolved | 09/11/2013 (4316 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
commit 6d28a3d5b4027d0793065744f5e3fd0b4906f861
Author: Michael M Slusarz <slusarz@horde.org>
Date: Wed Sep 11 13:40:17 2013 -0600
[mms] Correctly enforce file size attachment limits on the first
attachment (
Bug #12663).imp/docs/CHANGES | 2 ++
imp/lib/Compose.php | 7 ++++---
imp/package.xml | 2 ++
3 files changed, 8 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/6d28a3d5b4027d0793065744f5e3fd0b4906f861
Assigned to Michael Slusarz
State ⇒ Resolved
should not have happened) as the compose attach size limit is 10 MB only.
upload_max_filesize = 30M
2nd one is, when I try to attach a file greater than 30 MB (php.ini
setting), the session gets logged out and I get login screen in console
window.
you want an error to be thrown if upload_max_filesize is exceeded, you
need to increase post_max_size.
commit cf5e872ca149083b1bf313c4d964588d1e3ab81d
Author: Michael M Slusarz <slusarz@horde.org>
Date: Wed Sep 11 13:40:17 2013 -0600
[mms] Correctly enforce file size attachment limits on the first
attachment (
Bug #12663).imp/docs/CHANGES | 2 ++
imp/lib/Compose.php | 7 ++++---
imp/package.xml | 2 ++
3 files changed, 8 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/cf5e872ca149083b1bf313c4d964588d1e3ab81d
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ IMP
Summary ⇒ Logout after attaching
Type ⇒ Bug
State ⇒ Unconfirmed
$conf['compose']['link_attachments'] = false;
$conf['compose']['attach_size_limit'] = 10485760;
$conf['compose']['attach_count_limit'] = 0;
ie. attach_size_limit is 10 MB.
and in php.ini, I have the following settings.
post_max_size = 30M
upload_max_filesize = 30M
When I am trying to attach a file, 26 MB, it is able to attach (which
should not have happened) as the compose attach size limit is 10 MB only.
This is 1st issue.
2nd one is, when I try to attach a file greater than 30 MB (php.ini
setting), the session gets logged out and I get login screen in console
window.