Re: [imp] Caching inbox pages.
Michael M Slusarz wrote: > > Quoting robert sand <[EMAIL PROTECTED]>: > > > We are using https. Sorry I even asked. If you don't know the > > answer why even reply. > > Firefox does *not* cache https. > https://bugzilla.mozilla.org/show_bug.cgi?id=309368 > > IE does, but *only* if the Caching headers allow it. Many browsers > will cache pages even (if expired) if using http only. So there is > absolutely nothing wrong with the statement "you should use https". Our IMP (pretty much stock Horde 3.2.1 / IMP 4.2) sends this header: Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 It might help to add "private", but "no-store" should trump all that. It means that "the cache MUST NOT intentionally store the information in non-volatile storage, and MUST make a best-effort attempt to remove the information from volatile storage as promptly as possible after forwarding it" (RFC 2616). Firefox uses something like this behaviour for HTTPS responses unless the server explicitly overrides this with a more permissive Cache-Control header. IMP can't do much about user agents that ignore a MUST requirement in their HTTP implementation. -- Tim Bannister Email system administrator IT Services division The University of Manchester w: http://www.manchester.ac.uk/itservices -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
Re: [imp] Tab order in message composition and keyboard shortcuts.
I deleted my imp prefs.php file and used the default one. This solved the problem. So I started adding back my changes one by one and testing each time to see which one screwed up the tabbing and the "alt-shit-x". As soon as I made html the default as per below the tabbing problems reappeared. I could no longer tab past the subject in internet explorer 7 and in firefox I had to hit tab 20 times to get to the body. In both browsers the "alt-shift-x" stopped working. In internet explorer I noticed that after I enter the subject and hit tab it flashes "Error on page" at the bottom. If I switch back to plain text all errors go away. If I click on "Switch to html composition" problems reappear. Can anyone else duplicate this problem? Thank you. // If browser supports the HTML editor, should we compose in HTML mode by // default? $_prefs['compose_html'] = array( 'value' => 1, 'locked' => false, 'shared' => false, 'type' => 'checkbox', 'desc' => _("Compose messages with an HTML GUI by default (if browser supports the feature)?") ); -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
Re: [imp] Tab order in message composition and keyboard shortcuts.
Zitat von gimili <[EMAIL PROTECTED]>: I deleted my imp prefs.php file and used the default one. This solved the problem. So I started adding back my changes one by one and testing each time to see which one screwed up the tabbing and the "alt-shit-x". As soon as I made html the default as per below the tabbing problems reappeared. I could no longer tab past the subject in internet explorer 7 and in firefox I had to hit tab 20 times to get to the body. In both browsers the "alt-shift-x" stopped working. In internet explorer I noticed that after I enter the subject and hit tab it flashes "Error on page" at the bottom. If I switch back to plain text all errors go away. If I click on "Switch to html composition" problems reappear. Can anyone else duplicate this problem? Thank you. This makes sense, because the WYSIWYG editor is not part of the compose window document. You are actually lucky that you are able to tab into the editor at all with firefox. The editor is a separate HTML document running inside an iframe. Jan. -- Do you need professional PHP or Horde consulting? http://horde.org/consulting/ -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
Re: [imp] Tab order in message composition and keyboard shortcuts.
Jan Schneider wrote: This makes sense, because the WYSIWYG editor is not part of the compose window document. You are actually lucky that you are able to tab into the editor at all with firefox. The editor is a separate HTML document running inside an iframe. Jan. Yes at least with firefox I can eventually get to the message body with tab as it doesn't work at all in ie7 and actually shows an error when you try to tab past the subject. So I guess I am switching back to plain text composition. I don't mind it myself but most of my users prefer html. I checked and html composition also affects the tabbing past the subject field in dimp. Thanks. -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
[imp] Horde integration problem with Postfix
Hello, I am migrating from Horde+qmail to Horde+postfix. All the email accounts are stored in a Mysql database. To make qmail works, the mailbox field of each user is, for example: /var/spool/pop/domain/site.com/username For Postfix, instead, I need to change to: /var/spool/pop/domain/site.com/username/Maildir/ the problem is that the authentication with Horde doesn't work anymore when I update the tables in this way, instead the authentication by POP3 or IMAP (for example setting up the account on any email client still works). Have you got any help? Below the configuration files: ../horde/config/conf.php: http://www.domain.net/'; $conf['auth']['params']['app'] = 'imp'; $conf['auth']['driver'] = 'application'; $conf['signup']['allow'] = false; $conf['log']['priority'] = PEAR_LOG_NOTICE; $conf['log']['ident'] = 'HORDE'; $conf['log']['params'] = array(); $conf['log']['name'] = '/tmp/horde.log'; $conf['log']['params']['append'] = true; $conf['log']['type'] = 'file'; $conf['log']['enabled'] = true; $conf['log_accesskeys'] = false; $conf['prefs']['params']['driverconfig'] = 'horde'; $conf['prefs']['driver'] = 'sql'; $conf['datatree']['params']['driverconfig'] = 'horde'; $conf['datatree']['driver'] = 'sql'; $conf['group']['driver'] = 'datatree'; $conf['cache']['default_lifetime'] = 1800; $conf['cache']['params']['dir'] = Horde::getTempDir(); $conf['cache']['params']['gc'] = 86400; $conf['cache']['driver'] = 'file'; $conf['token']['params']['driverconfig'] = 'horde'; $conf['token']['driver'] = 'sql'; $conf['mailer']['params']['sendmail_path'] = '/usr/local/qmail/bin/sendmail'; $conf['mailer']['params']['sendmail_args'] = '-oi'; $conf['mailer']['type'] = 'sendmail'; $conf['vfs']['params']['vfsroot'] = '/tmp'; $conf['vfs']['type'] = 'file'; $conf['sessionhandler']['type'] = 'none'; $conf['problems']['email'] = '[EMAIL PROTECTED]'; $conf['problems']['maildomain'] = 'example.com'; $conf['problems']['tickets'] = false; $conf['menu']['apps'] = array(); $conf['menu']['always'] = false; $conf['menu']['links']['help'] = 'all'; $conf['menu']['links']['help_about'] = true; $conf['menu']['links']['options'] = 'authenticated'; $conf['menu']['links']['problem'] = 'all'; $conf['menu']['links']['login'] = 'all'; $conf['menu']['links']['logout'] = 'authenticated'; $conf['hooks']['permsdenied'] = false; $conf['hooks']['username'] = false; $conf['hooks']['preauthenticate'] = false; $conf['hooks']['postauthenticate'] = false; $conf['hooks']['authldap'] = false; $conf['portal']['fixed_blocks'] = array(); $conf['accounts']['driver'] = 'null'; $conf['imsp']['enabled'] = false; $conf['kolab']['enabled'] = false; /* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */ ../horde/imp/config/conf.php http://www.domain.net/'; $conf['server']['server_list'] = 'shown'; $conf['server']['sort_limit'] = '0'; $conf['server']['cache_folders'] = false; $conf['server']['cache_msgbody'] = false; $conf['mailbox']['show_attachments'] = true; $conf['mailbox']['show_preview'] = true; $conf['mailbox']['show_xpriority'] = true; $conf['fetchmail']['show_account_colors'] = true; $conf['fetchmail']['size_limit'] = '400'; $conf['msgsettings']['filtering']['words'] = './config/filter.txt'; $conf['msgsettings']['filtering']['replacement'] = ''; $conf['spam']['reporting'] = false; $conf['notspam']['reporting'] = false; $conf['msg']['prepend_header'] = true; $conf['msg']['append_trailer'] = true; $conf['compose']['allow_cc'] = true; $conf['compose']['allow_bcc'] = true; $conf['compose']['allow_receipts'] = true; $conf['compose']['special_characters'] = true; $conf['compose']['use_vfs'] = false; $conf['compose']['link_all_attachments'] = false; $conf['compose']['link_attachments_notify'] = true; $conf['compose']['link_attachments'] = true; $conf['compose']['add_maildomain_to_unexpandable'] = false; $conf['compose']['attach_size_limit'] = '0'; $conf['compose']['attach_count_limit'] = '0'; $conf['hooks']['vinfo'] = false; $conf['hooks']['signature'] = false; $conf['hooks']['trailer'] = false; $conf['hooks']['fetchmail_filter'] = false; $conf['hooks']['mbox_redirect'] = false; $conf['hooks']['mbox_icon'] = false; $conf['hooks']['spam_bounce'] = false; $conf['maillog']['use_maillog'] = true; $conf['tasklist']['use_tasklist'] = true; $conf['notepad']['use_notepad'] = true; /* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */ Thanks! -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
Re: [imp] Horde integration problem with Postfix
What IMAP server are you using to support this - Postfix is the Mail Transport not the imap server. did you update imp/config/servers.php with the information from the imp test script - imap test ? I don't believe the mailbox structure is any matter of horde/imp - Bill -- Bill Graham Systems Administrator Hurley Public Schools Hurley,SD 57036 USA http://www.hurleybulldogs.com [EMAIL PROTECTED] Quoting sugo <[EMAIL PROTECTED]>: Hello, I am migrating from Horde+qmail to Horde+postfix. All the email accounts are stored in a Mysql database. To make qmail works, the mailbox field of each user is, for example: /var/spool/pop/domain/site.com/username For Postfix, instead, I need to change to: /var/spool/pop/domain/site.com/username/Maildir/ the problem is that the authentication with Horde doesn't work anymore when I update the tables in this way, instead the authentication by POP3 or IMAP (for example setting up the account on any email client still works). Have you got any help? Below the configuration files: ../horde/config/conf.php: http://www.domain.net/'; $conf['auth']['params']['app'] = 'imp'; $conf['auth']['driver'] = 'application'; $conf['signup']['allow'] = false; $conf['log']['priority'] = PEAR_LOG_NOTICE; $conf['log']['ident'] = 'HORDE'; $conf['log']['params'] = array(); $conf['log']['name'] = '/tmp/horde.log'; $conf['log']['params']['append'] = true; $conf['log']['type'] = 'file'; $conf['log']['enabled'] = true; $conf['log_accesskeys'] = false; $conf['prefs']['params']['driverconfig'] = 'horde'; $conf['prefs']['driver'] = 'sql'; $conf['datatree']['params']['driverconfig'] = 'horde'; $conf['datatree']['driver'] = 'sql'; $conf['group']['driver'] = 'datatree'; $conf['cache']['default_lifetime'] = 1800; $conf['cache']['params']['dir'] = Horde::getTempDir(); $conf['cache']['params']['gc'] = 86400; $conf['cache']['driver'] = 'file'; $conf['token']['params']['driverconfig'] = 'horde'; $conf['token']['driver'] = 'sql'; $conf['mailer']['params']['sendmail_path'] = '/usr/local/qmail/bin/sendmail'; $conf['mailer']['params']['sendmail_args'] = '-oi'; $conf['mailer']['type'] = 'sendmail'; $conf['vfs']['params']['vfsroot'] = '/tmp'; $conf['vfs']['type'] = 'file'; $conf['sessionhandler']['type'] = 'none'; $conf['problems']['email'] = '[EMAIL PROTECTED]'; $conf['problems']['maildomain'] = 'example.com'; $conf['problems']['tickets'] = false; $conf['menu']['apps'] = array(); $conf['menu']['always'] = false; $conf['menu']['links']['help'] = 'all'; $conf['menu']['links']['help_about'] = true; $conf['menu']['links']['options'] = 'authenticated'; $conf['menu']['links']['problem'] = 'all'; $conf['menu']['links']['login'] = 'all'; $conf['menu']['links']['logout'] = 'authenticated'; $conf['hooks']['permsdenied'] = false; $conf['hooks']['username'] = false; $conf['hooks']['preauthenticate'] = false; $conf['hooks']['postauthenticate'] = false; $conf['hooks']['authldap'] = false; $conf['portal']['fixed_blocks'] = array(); $conf['accounts']['driver'] = 'null'; $conf['imsp']['enabled'] = false; $conf['kolab']['enabled'] = false; /* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */ ../horde/imp/config/conf.php http://www.domain.net/'; $conf['server']['server_list'] = 'shown'; $conf['server']['sort_limit'] = '0'; $conf['server']['cache_folders'] = false; $conf['server']['cache_msgbody'] = false; $conf['mailbox']['show_attachments'] = true; $conf['mailbox']['show_preview'] = true; $conf['mailbox']['show_xpriority'] = true; $conf['fetchmail']['show_account_colors'] = true; $conf['fetchmail']['size_limit'] = '400'; $conf['msgsettings']['filtering']['words'] = './config/filter.txt'; $conf['msgsettings']['filtering']['replacement'] = ''; $conf['spam']['reporting'] = false; $conf['notspam']['reporting'] = false; $conf['msg']['prepend_header'] = true; $conf['msg']['append_trailer'] = true; $conf['compose']['allow_cc'] = true; $conf['compose']['allow_bcc'] = true; $conf['compose']['allow_receipts'] = true; $conf['compose']['special_characters'] = true; $conf['compose']['use_vfs'] = false; $conf['compose']['link_all_attachments'] = false; $conf['compose']['link_attachments_notify'] = true; $conf['compose']['link_attachments'] = true; $conf['compose']['add_maildomain_to_unexpandable'] = false; $conf['compose']['attach_size_limit'] = '0'; $conf['compose']['attach_count_limit'] = '0'; $conf['hooks']['vinfo'] = false; $conf['hooks']['signature'] = false; $conf['hooks']['trailer'] = false; $conf['hooks']['fetchmail_filter'] = false; $conf['hooks']['mbox_redirect'] = false; $conf['hooks']['mbox_icon'] = false; $conf['hooks']['spam_bounce'] = false; $conf['maillog']['use_maillog'] = true; $conf['tasklist']['use_tasklist'] = true; $conf['notepad']['use_notepad'] = true; /* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */ Thanks! -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
Re: [imp] Horde integration problem with Postfix
Zitat von sugo <[EMAIL PROTECTED]>: Hello, I am migrating from Horde+qmail to Horde+postfix. All the email accounts are stored in a Mysql database. To make qmail works, the mailbox field of each user is, for example: /var/spool/pop/domain/site.com/username For Postfix, instead, I need to change to: /var/spool/pop/domain/site.com/username/Maildir/ the problem is that the authentication with Horde doesn't work anymore when I update the tables in this way, instead the authentication by POP3 or IMAP (for example setting up the account on any email client still works). Authentication has nothing to do with where the mail server stores it's data, let alone has it anything to do with the MTA you are using. If it works with other mail clients than IMP, then the difference is that IMP uses the c-client library (via the IMAP PHP extension) to authenticate, other mail clients don't. Jan. -- Do you need professional PHP or Horde consulting? http://horde.org/consulting/ -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
[imp] DIMP H3 (1.1-RC2)
The Horde Team is pleased to announce the second release candidate of the Dynamic Internet Messaging Program (DIMP) version H3 (1.1). Note that the version has changed with this release from DIMP H3 (1.0.1) to DIMP H3 (1.1) to reflect the number of feature enhancements and improvements that have been added. DIMP (Dynamic Internet Messaging Program, or Dynamic IMP) is a PHP-based webmail system and a component of the Horde project. DIMP is a version of the webmail client IMP utilizing AJAX-like technologies to allow a more dynamic user experience than traditionally offered via IMP. DIMP requires at least Horde version 3.2 and IMP version H3 (4.2) to run. Although not required to upgrade either Horde or IMP, it is STRONGLY RECOMMENDED you do as any bugfixes to core functionality will occur in these applications. Barring any problems, this code will be released as DIMP H3 (1.1). Testing is requested and comments are encouraged. Updated translations would also be great. Major changes compared to the DIMP H3 (1.0.1-RC1) version are: * Cache preview messages. * Indicate that the WYSIWYG editor is still loading. * Update quota when polling messages. The full list of changes (from version H3 (1.0.1-RC1)) can be viewed here: http://cvs.horde.org/diff.php/dimp/docs/CHANGES?r1=1.69.2.43&r2=1.69.2.55&ty=h The DIMP H3 (1.1-RC2) distribution is available from the following locations: ftp://ftp.horde.org/pub/dimp/dimp-h3-1.1-rc2.tar.gz http://ftp.horde.org/pub/dimp/dimp-h3-1.1-rc2.tar.gz Patches against version H3 (1.0.1-RC1) are available at: ftp://ftp.horde.org/pub/dimp/patches/patch-dimp-h3-1.0.1-rc1-h3-1.1-rc2.gz http://ftp.horde.org/pub/dimp/patches/patch-dimp-h3-1.0.1-rc1-h3-1.1-rc2.gz NOTE: Patches do not contain differences between files containing binary data. These files will need to be updated via the distribution files. Or, for quicker access, download from your nearest mirror: http://www.horde.org/mirrors.php MD5 sums for the packages are as follows: 6ead792f949cc9c965f2066ddc80e86c dimp-h3-1.1-rc2.tar.gz d76fd1d1f21a681904cf27374e1c1e54 patch-dimp-h3-1.0.1-rc1-h3-1.1-rc2.gz Have fun! The Horde Team. -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
[imp] IMP H3 (4.3-RC2)
The Horde Team is pleased to announce the second release candidate of the Internet Messaging Program (IMP) version H3 (4.3). Note that the version has changed with this release from IMP H3 (4.2.1) to IMP H3 (4.3) to reflect the number of feature enhancements and improvements that have been added. IMP, the Internet Messaging Program, is one of the most popular webmail applications available. It allows universal, web-based access to IMAP and POP3 mail servers and provides a full range of features normally found only in desktop email clients. Barring any problems, this code will be released as IMP H3 (4.3). Testing is requested and comments are encouraged. Updated translations would also be great. Major changes compared to the IMP H3 (4.2.1-RC1) version are: * Improved address book popup interface. * Improved autocomplete support. * Improved caching and storage optimizations. * Improved handling of views when the selected view is not the browser's default. * Fixed support for allowing the server name to be entered on login. * Fixed issue with magic quoting and uploaded attachment names. The full list of changes (from version H3 (4.2.1-RC1)) can be viewed here: http://cvs.horde.org/diff.php/imp/docs/CHANGES?r1=1.699.2.334&r2=1.699.2.351&ty=h The IMP H3 (4.3-RC2) distribution is available from the following locations: ftp://ftp.horde.org/pub/imp/imp-h3-4.3-rc2.tar.gz http://ftp.horde.org/pub/imp/imp-h3-4.3-rc2.tar.gz Patches against version H3 (4.2.1-RC1) are available at: ftp://ftp.horde.org/pub/imp/patches/patch-imp-h3-4.2.1-rc1-h3-4.3-rc2.gz http://ftp.horde.org/pub/imp/patches/patch-imp-h3-4.2.1-rc1-h3-4.3-rc2.gz NOTE: Patches do not contain differences between files containing binary data. These files will need to be updated via the distribution files. Or, for quicker access, download from your nearest mirror: http://www.horde.org/mirrors.php MD5 sums for the packages are as follows: 48c453d1d022241fa969a8ce0dc9d0be imp-h3-4.3-rc2.tar.gz 7668c7bdd65006e7a304fffb1020826b patch-imp-h3-4.2.1-rc1-h3-4.3-rc2.gz Have fun! The Horde Team. -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
[imp] Error: "Required secret is invalid - potentially malicious request"
Hi, our users are seeing the following error message on a blank screen when they hit the logout button: "Required secret is invalid - potentially malicious request." Any idea as to why this is error pops up and what can be done to prevent it? We're using Horde 3.2.1 & IMP H3 4.2. And kudos to the development team for your open source software and your time answering our questions ;) -- Babita Rana AICT University of Alberta -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
[imp] Emptying trash folder deletes inbox
Hi guys!! Users have problems since months ago with trash when their mailbox is overquota. My problem is like the ticket 5202 http://bugs.horde.org/ticket/5202 This case is resolved by Michael Slusarz - 04/06/07, but i have problems yet, I'm using Horde-3.1.3 and IMP-4.1.3 Thanks for your help!!! -- Estela Macías Administrador de Sistemas Departamento de Soporte de Operaciones y Sistemas Dirección de Servicios Telemáticos Universidad Simón Bolívar Caracas - Venezuela -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
Re: [imp] Emptying trash folder deletes inbox
Quoting Estela Macías <[EMAIL PROTECTED]>: Hi guys!! Users have problems since months ago with trash when their mailbox is overquota. My problem is like the ticket 5202 http://bugs.horde.org/ticket/5202 This case is resolved by Michael Slusarz - 04/06/07, but i have problems yet, I'm using Horde-3.1.3 and IMP-4.1.3 That bug has nothing to do with quotas - it was a faulty URL generation issue. And regardless, that fix was to 4.1.5, which you are not running. michael -- ___ Michael Slusarz [EMAIL PROTECTED] -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
Re: [imp] IMP is not displaying test/html type content
On Wed, Sep 10, 2008 at 22:46, Beda Tse <[EMAIL PROTECTED]> wrote: > Robin Polak wrote: > >> I have not configured a mime driver at all. How is it that I would go >> about >> that? >> >> On Wed, Sep 10, 2008 at 17:12, Beda Tse <[EMAIL PROTECTED]> wrote: >> >> >> >>> On 11 Sep 2008, at 1:28 AM, Robin Polak wrote: >>> >>> Hi, >>> >>> I am having a problem with IMP 4.2 running under Horde 3.2.1 not displaying HTML content either as an attachment or inline. Do I need to have Tidy support in order for it to work properly? If so where can I get complete source, including libtidy, or an rpm for RHEL 4. >>> Hi, >>> May I ask if you have set the mime driver correctly to have imp to >>> inline text/html content? >>> >>> -- >>> Beda Tse >>> iSN Network Company Limited >>> Email: [EMAIL PROTECTED] >>> >>> -- >>> >>> Robin Polak College of Mount Saint Vincent E-Mail: [EMAIL PROTECTED] V. 917-494-2080 -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED] >>> First off, don't top post. Human being do sequential access instead of > random access. :P > check your imp/config/mime_drivers.php if it is correct. > Sorry about the top post. Thank You very much. Enabling the text/html inline driver did the trick. -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
[imp] Emptying trash folder deletes inbox
Quoting Estela Macías : Hi guys!! Users have problems since months ago with trash when their mailbox is overquota. My problem is like the ticket 5202 http://bugs.horde.org/ticket/5202 This case is resolved by Michael Slusarz - 04/06/07, but i have problems yet, I'm using Horde-3.1.3 and IMP-4.1.3 That bug has nothing to do with quotas - it was a faulty URL generation issue. And regardless, that fix was to 4.1.5, which you are not running. michael Ok, but I have problems in version IMP-4.1.3 and it's almost the same problem with that bug (5202). When People has almost over quota, they try delete messages (preferences has active Virtual Trash") and then, they use link "Empty Trash Folder" into Virtual Trash View. Seconds after, all messages all messages into inbox dissapear. I checked code from Empty Trash Folder in /horde/imp/templates/mailbox/actions.inc 'actionID', 'empty_mailbox'), _("Empty Trash folder"), 'widget', '', "return confirm('" . addslashes(_("Are you sure you wish to empty this folder?")) . "');", _("Empty Trash folder")); ?> and this is copy link "Empty Trash Folder" https://webmail.usb.ve/imp/mailbox.php?Horde=a1eulkblo4f6scv0bhib8hsh63&actionID=empty_mailbox I don't know if it's an answer time from imapmail server or something like a "glitch" in IMP not intentional. I really aprecciate your help because until today, I have 8 users losted all information. Thanks again!!! -- Estela Macías Administrador de Sistemas Departamento de Soporte de Operaciones y Sistemas Dirección de Servicios Telemáticos Universidad Simón Bolívar Caracas - Venezuela -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
[imp] Servers.php
Please could send me a copy of their servers.php file for a connection to an imap server and an outgoing server of smtp, so i can edit it to my needs as i am having real trouble configuring mine. Cheers Andrew Linkie -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]
Re: [imp] Horde integration problem with Postfix
Hi Jan, if I configure the database as before (with the mailbox in this way:/var/spool/pop/domain/site.com/username) the authentication works with Horde as well. In all the process I've never modified the file system. Bill: I use Courier as IMAP server, and the configuration's parameters are right. -- IMP mailing list - Join the hunt: http://horde.org/bounties/#imp Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [EMAIL PROTECTED]