[mimp] Err: the folder "sent-mail" was not created.

Simon Detheridge simon at widgit.com
Mon Jun 6 08:28:13 PDT 2005


Quoting Jan Schneider <jan at horde.org>:

> Zitat von Simon Detheridge <simon at widgit.com>:
>
>> Okay, I got over my problem with the lack of menus (I've never
>> actually tried a
>> wap site before. They never seemed very useful.) and now I have another
>> problem.
>>
>> When I send a message, it sends correctly, but the following error is
>> displayed:
>>
>> ERR: The folder "sent-mail" was not created. This is what the server said:
>> Invalid mailbox name.
>> MSG: Message sent successfully, but not saved to sent-mail
>>
>> Any idea what causes this? It works in imp...
>
> With the same settings in config/servers.php?
>
> Jan.

It would appear so... The only difference is that my mimp file is lacking an
entry for the smtp server, and a 'hordeauth' entry (mail sends fine 
though, and
these options weren't in the servers.php.dist)

Here's my servers.php for mimp:

$vdomain = getenv('HTTP_HOST');
$vdomain = preg_replace('|^mail\.|i', '', $vdomain);
$vdomain = String::lower($vdomain);

$servers['imap'] = array(
    'name' => 'IMAP Server',
    'server' => 'localhost',
    'protocol' => 'imap/ssl/novalidate-cert',
    'port' => 993,
    'folders' => '',
    'namespace' => 'INBOX.',
    'maildomain' => $vdomain,
    'realm' => '',
    'preferred' => '',
    'dotfiles' => false,
    'hierarchies' => array()
);

And here's my servers.php for imp:

$vdomain = getenv('HTTP_HOST');
$vdomain = preg_replace('|^mail\.|i', '', $vdomain);
$vdomain = String::lower($vdomain);

$servers['imap'] = array(
    'name' => 'IMAP Server',
    'server' => 'localhost',
    'hordeauth' => 'full',
    'protocol' => 'imap/ssl/novalidate-cert',
    'port' => 993,
    'folders' => '',
    'namespace' => 'INBOX.',
    'maildomain' => $vdomain,
    'smtphost' => 'localhost',
    'smtpport' => 25,
    'realm' => '',
    'preferred' => '',
    'dotfiles' => true,
    'hierarchies' => array()
);

Thanks,
Simon

-- 
Simon Detheridge
SEN Developer, Widgit Software


More information about the mimp mailing list