> I have installed the retrieveuserdata plugin, when I receive a new
> message I receive the following error message in spite of the "You
> have
> new mail" message:
> *Fatal error*: Failed opening required
> '../plugins/retrieveuserdata/config.php'
> (include_path='.:/usr/share/pear') in
> */var/www/html/correo/plugins/retrieveuserdata/vpopmail.php* on line *36
> *
> When I try to go into Options, New Mail Options I receive the same error
> message.
> And in spite of returning the Full Name in Options, Personal Information
> it returns: no such user [EMAIL PROTECTED]
>
> I am using the retrieveuserdata plugin with vpopmail. I hope you could
> help me. If you need more information, please tell me.

open /var/www/html/correo/plugins/retrieveuserdata/vpopmail.php

find
---
require_once("../plugins/retrieveuserdata/config.php");
---

change it to
---
if (!defined('SM_PATH'))  {
 define('SM_PATH','../../');
}
require_once(SM_PATH . "plugins/retrieveuserdata/config.php");
---

and ignore previous message. Accidently hit send too early. Check if you
get errors messages then. I can't test this code (no vpopmail install) and
it is possible that SM_PATH should point into different directory.
-- 
Tomas


-------------------------------------------------------
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community?  Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to