| Summary | Saving Sent-Mail & Adding trailer.txt |
| Queue | MIMP |
| Type | Bug |
| State | Resolved |
| Priority | 2. Medium |
| Owners | Michael Slusarz <slusarz (at) horde (dot) org> |
| Requester | eacosta (at) eugene (dot) cc |
| Created | 02/16/2005 (1186 days ago) |
| Due | |
| Updated | 04/09/2008 (38 days ago) |
| Assigned | 05/04/2005 (1109 days ago) |
| Resolved | 05/04/2005 (1109 days ago) |
| Attachments | |
| Milestone | |
| Patch |
I had problem with sent mail not saved on Mobile Mail (mimp) H3 (1.0.2).
The small change in horde/mimp/compose.php helped in my case.
First commented original line replaced with new line:
//$sent_mail_folder = $identity->getValue(Util::getFormData('identity'), Util::getFormData('sent_mail_folder'));
$sent_mail_folder = $identity->getValue('sent_mail_folder', Util::getFormData('identity'));
Best,
Bartek
> I am running IMP 4.04 with a local Cyrus IMAP 2.1.18 server and had
> the same problem. In my case, the fix was to set both folders and
> namespace to ''.
Huh? This is a ticket about MIMP, not IMP. In either case, neither MIMP nor IMP uses 'namespace' or 'folders' anymore.
I am running IMP 4.04 with a local Cyrus IMAP 2.1.18 server and had the same problem. In my case, the fix was to set both folders and namespace to ''. Note that the documentation within servers.php seems to suggest a value of 'INBOX.' be used for either the "folders" or the "namespace" variables when using Cyrus-IMAP. In terms of defaults, this means changing the default namespace value listed for 'Cyrus IMAP Server' from 'INBOX.' to ''.What do you mean it works fine? It is definitely not working fine. I stated that 'INBOX.' works in "folders" and not in "namespace". To me, this is not working fine. I want to put the setting in the "namespace" field and not the "folders" field. Now, are you saying that this works for everyone else but me? Why would it work for "folders" and not "namespace"? They do similar things, so it should work in both fields!What news is there to report? This works fine here so until you provide a patch or a reproducible means to trigger this bug, there isn't anything we are going to be doing with this bug.Any news on my last post? It's been a while...
Thanks,
Eugene
I don't want to look dumb or anything (I know I do), but how would one get to that options page?
Also, I played around with some settings in servers.php, and moved the 'INBOX.' setting from "namespace" to "folders", and now it saves mail in the sent-mail folder. Do you know why 'INBOX.' works in "folders" but not in "namespace"? One of the releases of MIMP (a few months ago) allowed the 'INBOX.' setting to work fine for "namespace". Even my IMP configuration has 'INBOX.' set in the "namespace" field.
Thanks for the help,
Eugene
Code has been added to MIMP to allow a user to change the sent-mail folder from the configuration page. All I can say is that it looks like your stored sent-mail folder value is wrong so you will need to use the options page to update it to a valid value.Here are those configurations settings:
./horde/mimp/config/servers.php entry:
(Same values I use for IMP, and IMP works fine)
$servers['cyrus'] = array(
'name' => 'masked.domain.com',
'server' => 'imap.masked.domain.com',
'protocol' => 'imap/notls',
'port' => 143,
'folders' => '',
'namespace' => 'INBOX.',
'maildomain' => 'masked.domain.com',
'realm' => '',
'preferred' => '',
'dotfiles' => false,
'hierarchies' => array()
);
./horde/mimp/config/prefs.php:
(sent-mail entries):
// save a copy of sent messages?
// a value of 0 = no, 1 = yes
$_prefs['save_sent_mail'] = array(
'value' => 1,
'locked' => false,
'shared' => true,
'type' => 'implicit');
// sent mail folder
$_prefs['sent_mail_folder'] = array(
'value' => 'sent-mail',
// For Exchange server uncomment the line below and delete the line above
// 'value' => 'Sent Items',
'locked' => false,
'shared' => true,
'type' => 'implicit');
So, do I have a misconfigured entry here somewhere?
Thanks,
Eugene
State ⇒ Resolved
All that means is that you've misconfigured 'folders' or 'namespace', or the sent mail folder pref, in MIMP.Has this been assigned to anyone? Or should I open a new Case? I have also just updated using the HEAD from last night.
Thanks,
Eugene
Hello,
I just upgraded to mimp-HEAD-2005-04-06.tar.gz and now, when I send an e-mail using MIMP, I get the following error:
ERR: The folder "sent-mail" was not created. This is what the server said: Permission denied
MSG: Message send successfully, but not saved to sent-mail
So, it looks like it is trying to save the outgoing mail, but is now erroring out. I also just tried to send mail using IMP, and that saved the outgoing mail successfully, so it doesn't sound like the problem is with the server.
Thanks,
Eugene
The code has been cleaned up a bit and this problem should be fixed.Hello All,
I am writing again because I have updated MIMP to the newest HEADS (including mimp-HEAD-2005-04-04.tar.gz) and my Sent-Mail is still not getting saved in my sent-mail folder. According to this ticket &
#1634, this issue has been fixed, but I have upgraded numerous times and the mail is still not getting saved.All the configuartion files are the same as to when I opened
#1392.Thanks,
Eugene
State ⇒ Resolved
The sent-mail issues was resolved the same time
Bug #1634was fixed.Trailer.txt was fixed (there was an instance of IMP_BASE instead of MIMP_BASE in the code).
Looks like you don't have display_errors on which would have given you error messages in these two cases, which is probably a good thing when using non-stable releases.
Taken from
Assigned to
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Saving Sent-Mail & Adding trailer.txt
Queue ⇒ MIMP
I just updated to the new development snapshot (HEAD) of MIMP from Feb. 13 03:21 and saved the new conf.php from the administration page from Horde. I then updated my servers.php page, can login, and send mail, but am having problems with saving sent mail in the "sent-mail" folder and it not adding the contents of trailer.txt to sent e-mails. (All this works fine from IMP.)
The following is my conf.php file:
<?php
/* CONFIG START. DO NOT CHANGE ANYTHING IN OR AFTER THIS LINE. */
// $Horde: mimp/config/conf.xml,v 1.9 2004/10/26 07:06:42 slusarz Exp $
$conf['user']['allow_folders'] = true;
$conf['user']['alternate_login'] = false;
$conf['user']['redirect_on_logout'] = false;
$conf['server']['server_list'] = 'none';
$conf['server']['change_server'] = false;
$conf['server']['change_port'] = false;
$conf['server']['change_protocol'] = false;
$conf['server']['change_folders'] = false;
$conf['server']['show_dotfiles'] = false;
$conf['server']['hierarchies'] = array();
$conf['mailbox']['max_from_chars'] = 10;
$conf['mailbox']['max_subj_chars'] = 20;
$conf['msg']['prepend_header'] = true;
$conf['msg']['append_trailer'] = true;
$conf['msg']['filtering']['words'] = './config/filter.txt';
$conf['msg']['filtering']['replacement'] = '****';
$conf['compose']['use_vfs'] = false;
$conf['compose']['allow_cc'] = false;
$conf['compose']['allow_bcc'] = false;
$conf['hooks']['vinfo'] = false;
$conf['hooks']['trailer'] = false;
/* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */
And the following are the associated entries from the prefs.php file:
// a value of 0 = no, 1 = yes
$_prefs['save_sent_mail'] = array(
'value' => 1,
'locked' => false,
'shared' => true,
'type' => 'implicit');
// sent mail folder
$_prefs['sent_mail_folder'] = array(
'value' => 'sent-mail',
// For Exchange server uncomment the line below and delete the line above
// 'value' => 'Sent Items',
'locked' => false,
'shared' => true,
'type' => 'implicit');
Thanks in advance,
Eugene