[imp] Preview pane
I am trying to persuade a few holdouts to convert to Horde (we are running 5.1.3) The only remaining issue is the behaviour when selecting a message: they are used to clicking on a message title/sender and the full panel being replaced with the message. A back button is required, of course, to return to the list, but this is significantly faster than opening the message in a new window and has a much larger display area that the preview pane and dozen;t require them to use the splitter between the message list and message preview panels to expand the preview size. I have an idea that the behaviour of the existing "thumb" on the splitter could be co-opted to help. Currently a double-click splits the window size evenly. Firstly, would it be possible to click or double-click and toggle the panel to full size (or near full) and half size? That is probably simple enough, but I'm not a JavaScript programmer. Secondly, assuming this is straight forward, could the expansion to full size be activated by clicking on the mail title in the message list? Reversing it back to half size would have to depend on the splitter thumb I suppose. Not being a brilliant JavaScript programmer I don't wish to embark on this if someone can think of a good reason why not to do it, or if it would break something /Chris -- imp mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: imp-unsubscr...@lists.horde.org
[imp] delete mail imp 6.2 as pop
Hi, I have horde 5.2.0 with imp 6.2. I connect with my IMAP/POP server as pop. When I delete an e-mail I notice that I always have the same list of e-mail. If I press refresh button (or logout and login) in horde the mail that I deleted is not in the list. (Dynamic interface). In Basic interface when I deleted an e-mail the list of e-mail is empty. Are there something of wrong in my config? With imp 6.1 I had not this problem. I try with Internet Explorer 11 and with firefox 30 on my pc. In my server in wich I have horde there is Centos 6.5 x86_64 with Php version: PHP 5.3.3 (cli) (built: Dec 11 2013 03:29:57) Regards, Antonio De Maglio -- Dott. Antonio De Maglio Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" (ISTI) Italian National Research Council (CNR) via G. Moruzzi, 1 - 56124 Pisa, Italy Area della Ricerca CNR di Pisa Skype: antonio_demaglio -- imp mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: imp-unsubscr...@lists.horde.org
Re: [imp] trouble using IMP in "Mobile (Smartphone/Tablet) mode after upgrade to horde 5.2.0 and imp 6.2.0
Quoting Michael M Slusarz : Quoting Bruno Marsal : On Fri, Jul 18, 2014 at 5:04 AM, Patrick Wolf wrote: When trying to open the "Mail" link on the interface the address bar changes from https://ourservername/horde/services/portal/smartmobile.php to https://ourservername/horde/services/portal/smartmobile. php#mailbox?mbox=SU5CT1g but the browser appears to just reload the screen that shows up after login. The user isn't actually taken to the mobile version of imp. ?I assume you are running some PHP 5.3 which has issues parsing URLs with # and ? in this specific order. Either you upgrade your PHP version or try to use this fix which worked for me... ? ?diff --git a/horde/index.php b/horde/index.php index ad2d01b..dad45f8 100644 --- a/horde/index.php +++ b/horde/index.php @@ -62,7 +62,14 @@ if ($main_page) { } elseif (($initial_app = $prefs->getValue('initial_application')) && ($initial_app != 'horde') && $registry->hasPermission($initial_app)) { -$main_page = Horde::url($registry->getInitialPage($initial_app), true); +$main_page = Horde::url(rtrim($initial_app, '/') . '/', true); } elseif ($registry->getView() == Horde_Registry::VIEW_SMARTMOBILE) { $main_page = $registry->getServiceLink('portal'); } elseif (($initial_page = $registry->getInitialPage('horde')) && ? This doesn't work, since the anchor information in the URL is needed to redirect to the correct mailbox. michael ___ Michael Slusarz [slus...@horde.org] -- imp mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: imp-unsubscr...@lists.horde.org Yes, we're running CentOS 6.5 with the stock php 5.3.3 . I hesitate to do a non-standard upgrade as I don't know what if anything else might break if I updated the php beyond the RHEL officially sanctioned version. I wonder if it would be best to roll back to the previous version of Horde where this worked. Thoughts on that? Thanks Pat -- imp mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: imp-unsubscr...@lists.horde.org