Search The ForumSearch   RegisterRegister  LoginLogin

AfterLogic WebMail Pro

 AfterLogic Forum : AfterLogic WebMail Pro
Subject Topic: Just purchased Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 02 April 2005 at 11:22am | IP Logged Quote alex

I hope that you'll send me soon and that i can easily integrate with my portal :)
Back to Top View alex's Profile Search for other posts by alex
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 03 April 2005 at 9:06am | IP Logged Quote Alex

I hope the installation package and the license key should have reached you by now.
Please let us know if any issues arise, and good luck to you with your portal!

Regards,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 
alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 03 April 2005 at 10:15am | IP Logged Quote alex

Thank you. received now. Do you think that will be easy to integratre in a portal as do you have made with this forum?

Sorry 4 english.
Back to Top View alex's Profile Search for other posts by alex
 
alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 03 April 2005 at 4:27pm | IP Logged Quote alex

Hello, i'm testing your application and want to ask you some question:

1. i don't want use db for store login account. is possible? simply my page give to system the account option to get mails.

2. i don't want download attach on server.is dangerous for virus

Is very difficult to integrate in a web pages. Why you don't make a tryout version? i'm not loving this software, but i've already payed!
Back to Top View alex's Profile Search for other posts by alex
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 04 April 2005 at 9:09am | IP Logged Quote Alex

Quote:

1. i don't want use db for store login account. is possible? simply my page give to system the account option to get mails.


Yes, WebMail Pro supports special RedirectUser object which allows you to integrate WebMail Pro with existing portal. It's described in help/webmail_integration.html file.

Typical usage is as follows:
Code:

<!--#include file="path_to_webmail/integr.asp" -->
<%
Set rUser = New RedirectUser
rUser.wm_email = "login@domain.com"
rUser.wm_login = "pop3_login"
rUser.wm_password = "pop3_password"
rUser.wm_mailhost = "mail.server.com"
rUser.UserLogin()
%>


This will allow to launch WebMail with specified user account bypassing WebMail's login screen.

Quote:
2. i don't want download attach on server.is dangerous for virus

Disabling attachments will not allow your users to receive and send files, pictures, sounds. It's more efficient to install antivirus software on the server. Antivirus software will not allow to save attachments containing viruses.
However, if you still want to get attachments completely disabled, please let us know and we'll send you the update for this.

Quote:
Why you don't make a tryout version?

There is WebMail Lite version. It's can be used for free by registered users of WebMail Pro or MailBee Objects.

Lite version does not use database and always accesses mails directly on the POP3 server. Also, there is no mail folders and Rich-text editor but RedirectUser object is fully supported, thus you can integrate Lite with your portal.

You can download it from http://www.afterlogic.com/download/webmail.asp

Regards,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 
beerbear
Newbie
Newbie


Joined: 02 April 2005
Online Status: Offline
Posts: 2
Posted: 05 April 2005 at 7:23am | IP Logged Quote beerbear

Thank you for support. If i use RedirectUser object the db don't store the urer data? or it will be stored?

Thank You.
Back to Top View beerbear's Profile Search for other posts by beerbear
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 05 April 2005 at 8:45am | IP Logged Quote Alex

In Pro version, RedirectUser stores account data in db if this data is not already present in db. In Lite version, RedirectUser does not anything to db (since Lite does not uses databases at all).

Regards,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 
alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 11 April 2005 at 11:03am | IP Logged Quote alex

Yes... but i've tried a version without db..and purchased one with db.

I don't like to store user data. What appen if i send with redirectuser different password than stored in the db?

There is a refound policy here?

Thank you
Back to Top View alex's Profile Search for other posts by alex
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 11 April 2005 at 12:47pm | IP Logged Quote Alex

Quote:
What appen if i send with redirectuser different password than stored in the db?

Sending password is necessary only when you create user record first time (to add new account info into db). Next time (if db record corresponding specified email address is already in db), it's enough to send only email address:

Log in existing email account:
Code:

<%
Set rUser = New RedirectUser
rUser.wm_email = "login@domain.com"
rUser.UserLogin()
%>


However, if the password is explicitly specified but it's different from the one stored in the database, WebMail will deny this new password.

Quote:
There is a refound policy here?

Information regarding the fact that WebMail Pro uses database is explicitly provided at WebMail Pro homepage of this web site.

Sorry, there is no refund policy in this case.

Regards,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 
alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 11 April 2005 at 2:15pm | IP Logged Quote alex

This is a big problem, because if the user change password on mail server, it will not work. On the homepage of software is only write "Databases supported: MS SQL Server, MS Access, MySQL Server" not that the login system is different from lite versione (tryout for me).
Back to Top View alex's Profile Search for other posts by alex
 
alexq
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 11 April 2005 at 2:17pm | IP Logged Quote alexq

.... and that accouint will stored in db.
I must change the password on two database (mail server and mailbee)???. Why there is not way to login without the database system?
Back to Top View alexq's Profile Search for other posts by alexq
 
alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 11 April 2005 at 2:23pm | IP Logged Quote alex

There is another problem. if i use redirectuser with a new account, a form ask me to register mail....
Back to Top View alex's Profile Search for other posts by alex
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 11 April 2005 at 4:41pm | IP Logged Quote Alex

Quote:
I must change the password on two database (mail server and mailbee)???. Why there is not way to login without the database system?

I must make important clarification here. WebMail will deny different password for already registered user only if this password is incorrect. If new password is ok (when user changed password for his/hers POP3 account), new password will be accepted and db record will be updated to reflect new password.

So, you do not need to change password in MailBee db.

Quote:
There is another problem. if i use redirectuser with a new account, a form ask me to register mail....

This occurs when new user data you specified is incorrect. When adding new user into db, WebMail first tries to connect to POP3/IMAP server using this data. If the connection
cannot be made, it throws you to register screen.

Make sure you specify all the data correctly. For example, if default POP3/IMAP server is not specified in Administration Panel/WebMail settings, you must specify it in wm_mailhost property of RedirectUser object.

Regards,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 
Alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 12 April 2005 at 9:20am | IP Logged Quote Alex

Please, you must help me with refound policy. I'ce purchased a good product but that work in a different way from what i was think and read on your site.

I've problem with database accounts, i don't want to download message in webmail (why this on a webmail???), i think that is not easy to cutomization as you have write (is all hard coded... and much more.

Please i must use a webmail but i've no other budget. Please refound me. I'll send back the code and the key. Thank You.
Back to Top View Alex's Profile Search for other posts by Alex
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 12 April 2005 at 9:43am | IP Logged Quote Alex

Why don't you just use WebMail Lite? It does not require database (as you wish), and will work with the same license key you purchased for WebMail Pro.

WebMail Lite is not just a trial of WebMail Pro. It's separate product which can be registered via license key (which is compatible with WebMail Pro key), and, once purchased WebMail Pro, you automatically gat WebMail Lite registered too (because you can you the same key for both versions).

WebMail Lite can be download from http://www.afterlogic.com/download/webmail.asp

Online demo is here: http://www.afterlogic.com/webmail_lite

Regards,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 
beerbear
Newbie
Newbie


Joined: 02 April 2005
Online Status: Offline
Posts: 2
Posted: 12 April 2005 at 11:39am | IP Logged Quote beerbear

Thanx very much for your help.... but the problem are the folder, that are not included in lite version. Here i'm for peace and not for war. Please help me with refound. Thank you very much
Back to Top View beerbear's Profile Search for other posts by beerbear
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 12 April 2005 at 12:03pm | IP Logged Quote Alex

Unfortunately, in regard of databases and folders support, you want impossible thing. You cannot get email folders functionality without database. This is not MailBee limitation, this is fundamenal property of the POP3 protocol. That's why WebMail Pro (which supports folders) requires databases while WebMail Lite (which does not support folders) does not require database.

The problem is that POP3 itself supports only Inbox. Other folders are not supported and email clients must store email somewhere else, usually in database.

Besides that, POP3 does not support read/unread message status, sorting, and many other options even in Inbox.

That's why database solution is required to add these features to email client. Without database, all you can get is WebMail Lite functionality. The same is also true for any competive products.

With POP3, you have to select an approach: whether you want folders (and you have to use database in this case) or you can sacrifice folders and other cool features to get rid of database. With MailBee, you currently have registered versions of both products (Pro and Lite) and can decide which approach to use. And there will be no significant difference for any other product in this regard (folders vs database).

I hope this helps,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 
alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 12 April 2005 at 12:10pm | IP Logged Quote alex

so, please, can you refound me? i'll send back all software and key.
Back to Top View alex's Profile Search for other posts by alex
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 12 April 2005 at 12:35pm | IP Logged Quote Alex

We sent refund request to share-it! (our payment provider you purchased MailBee software from), they should refund your order in 24 hours or so.

Please delete all the copies of MailBee products and corresponding license keys you have.

Regards,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 
Alex
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 12 April 2005 at 2:51pm | IP Logged Quote Alex

Thenk you very much. How can i give you back the key? I must only delete it?
Back to Top View Alex's Profile Search for other posts by Alex
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 12 April 2005 at 3:04pm | IP Logged Quote Alex

Just delete the key and the software.

Regards,
Alex
Back to Top View Alex's Profile Search for other posts by Alex
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide