I had a number of problems when setting this module up, but have worked around most of them.

1.weight error with file and file attach as this post http://drupal.org/node/493514 This fix did not work for me, but I installed utility module and was able to fix manually.

2.The very common
• warning: imap_open() [function.imap-open]: Couldn't open stream {mail.site.net:143}INBOX in /home2/site/public_html/sites/all/modules/mail_api/contrib/imapwu_api/imapwu_api.module on line 73.
• warning: imap_status(): supplied argument is not a valid imap resource in /home2/site/public_html/sites/all/modules/mail_api/contrib/imapwu_api/imapwu_api.module on line 93.
• warning: imap_check(): supplied argument is not a valid imap resource in /home2/site/public_html/sites/all/modules/mail_api/contrib/imapwu_api/imapwu_api.module on line 179.
• warning: imap_fetch_overview(): supplied argument is not a valid imap resource in /home2/site/public_html/sites/all/modules/mail_api/contrib/imapwu_api/imapwu_api.module on line 165.

I worked around by adding /novalidate-cert I don't think this is 100% right, but I can live with it.

Once it was working I had some problems viewing messages (header in view) I worked around that using this post http://drupal.org/node/384644 and I am attaching the errors I got when I clicked on "view full header"

I would like you opinion on these "fixes" http://drupal.org/node/428944 and

that's because of the function webmail_plus_init(). It is called when loading every single node .... Don't know why it's implemented this way. One quick solution is to add a line
if(arg(0)!='webmail_plus') return;
in the beggining of the funciton webmail_plus_init(), which means that don't check emails unless you are in the webmail module.

I also found a popular request for docs for setting up the "mail view/page" http://drupal.org/node/401722

I would like to improve the documentation some, especially add docs for this last query, but I am not 100% sure myself.

My problems with my "wemail_plus" page:

1.I have no link for the inbox. I am attaching the source code for my folder block (where can I add this link?

2.In your screenshots you have a "manage folders" link, an "address book" link. I also have neither of those, although I have contact manager selected and enabled.

3.What version are you using in those screenshots?

I hope I have given you enough info to get me going so I can update the docs and hopefully reduce your issue queue as it is pretty full with many duplicates.

Chris

Comments

Canine Coaches’s picture

Update above. The "to" field autocomplete gives me an error (javascript jquery)and does not work. I will elaborate tomorrow when I am at my desktop machine. Sending seems to work fine.

Chris

scripthead’s picture

webmail_plus_init() could use some optimization but depending on your setup you might or might not be able to completely remove it. Webmail Plus exports a number of blocks that display various information like new message count that wouldn't work without hook_init() being called. Now that I think about it, this wasn't the best approach but it worked at the time.

If IMAP connections put this much load on your site I recommend you install IMAP Proxy to cache connections. It will also speed up your webmail experience.

scripthead’s picture

warning: file_get_contents(/tmp/devel_themer_6635978644b82d2a4ab247) [function.file-get-contents]: failed to open stream: No such file or directory in /home/canineco/public_html/mail/sites/all/modules/devel/devel_themer.module on line 52.  

the above isn't a Webmail issue, it seems it's caused by the Devel module.

The lack of the Inbox folder seems to be a misconfiguration of Mail API. Mail API contains a field to define inbox, in the vast majority of cases it needs to be set to INBOX.

The site still has screenshots for Webmail Plus for Drupal 4.x. Sorry for the confusion.