![]() |
|
|||||||
| Chit Chat Public Talk about any thing you want! This forum is public. |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#31
|
||||||||||||
|
||||||||||||
|
you cannot use mail.yourdomain.com because that is the mail server alias. You have to use one that's not taken, like webmail.yourdomain.com.
I just set up subdomains of webmail.domain.com for customers that want to use webmail. That way they only have to enter their account name and password. Everything else is hard coded as hidden form fields. |
|
#32
|
||||
|
||||
|
So we can actually make a customer login page for our domains? That would be a really nice feature. Hold on tight, I am sure I am going to need help with this.
Thanks in advance, |
|
#33
|
||||
|
||||
|
one of the few problems you will have with this is, unless you check and store the values somehow, if they enter an incorrect username or password they will be sent to the @mail page.
|
|
#34
|
||||||||||||
|
||||||||||||
|
Quote:
Agreed -- I have been using a log on off my web site for months. My clients like it and it improves your brand awareness to the email users of your client. You can also include an advertising message, or internet use tip on the email log in page. It could be a little confusing when they default to the atmail page, but does not seem to be a big problem. Good luck. ![]() |
|
#35
|
||||||||||||
|
||||||||||||
|
yeah, I just remind my customers that have a custom page that if they have trouble to go back to their url - webmail.theirdomain.com
So far, so good ![]() |
|
#36
|
||||
|
||||
|
Yeah i just explain to mine, that the original login page has alot of other fields that they would normally need to fill in, and what i have done is created them a page where i have pre-set those fields. And like you said jmbeach, if they have problems to go back to the webmail.domain.com and try again.
|
|
#37
|
||||||||||||
|
||||||||||||
|
I'm still a little confused regarding the custom email page, if someone has the time, would be much appreciated...
I currently have setup a custom page that will only work with this url: http://webmail.hsphere.cc/atmail.pl if the user enters their domain and their username / password. I can access webmail currently through mail.mydomain.com but I can't seem to link to the perl file through this. Is there another level of customisation above this I can setup that will allow my clients to stay within webmail.mydomain.com while viewing webmail instead of ening up with the ip? ...mentioned earlier using sub-domains but not sure I understand the procedure there? Does this allow you to use your domain as the host mail account so that the user only need enter username/password rather then username/host/password? Would be very interested in knowing how to set this up? I tried setting a DNS A record within my service accounts' service domain with the ip 216.157.131.123 but I only get an empty page with NT on it. Maybe it's because the Custom A records need time to propogate and then all will be well? Cheers! |
|
#38
|
||||
|
||||
|
If it helps, here's how I've got it setup for my clients.
To start, create a DNS A record pointing to the @Mail server IP address, like this: ![]() If you're worried about the IP address ever changing, you could instead make it a CNAME record that points to "webmail.hsphere.cc". From there, you just need your login page, though it sounds like you may already be okay in this department. Here's a stripped down version of mine though: Code:
Code:
You could also add "selected" to the appropriate <option> tags to define default/preferred settings without actually forcing them upon users. Hope this helps. Feel free to PM me if you have any trouble or other questions though. Best of luck! |
|
#39
|
||||||||||||
|
||||||||||||
|
beautiful, thank you!
will look up how to do a cname and add this feature to my hositngpage, thanks.
__________________
goodbye idevaffiliate, you can kiss my @$* with your poor support and broken script, I am now using post affiliate pro 3 |
|
#40
|
||||||||||||
|
||||||||||||
|
Thanks for the detailed answer Curt,
Another minor thing I had to change with the form, since I didn't have space for the dual fields for user/host was to add them as hidden fields and use a field called emailurl to enter the full username @ address, then on submit: var tmpArr = formObj.emailurl.value.split("@"); formObj.username.value = tmpArr[0]; formObj.pop3host.value = tmpArr[1]; cheers! |
|
#41
|
||||||||||||
|
||||||||||||
|
...actually Curt, I'm not sure how yours is working becuase if the pop3host is hard-coded then it would only let in accounts/usernames under that domain. Or this was all I could get working with it that way, which was another reason I added the full username @ theirdomain.com
Should all users be able to login, even though the pop3host is set to mydomain.com? |
|
#42
|
||||
|
||||
|
I customize mine on a client-by-client basis actually, as some have requested that their own domain should show up in the address bar instead of mine. This was never intended to be a unified login page for all domains hosting with me though. If that's what you're working towards, here's a modified version of that code that should work okay for you:
Code:
|
|
#43
|
||||||||||||
|
||||||||||||
|
Tks everybody for this precious help on turning webmail better...
But i think i've missed someting. Ok, i've created an A record. But now, where do i put the login page? should i create a subdomain called "webmail"? If i've correctly understoud, the purpose of this threat is to access custom login page when entering the link webmail.mydomain.com, right? Tks in advance. |
|
#44
|
||||
|
||||
|
Yeah thats all i've done with mine. just created the subdomain and stuck it in there
|
|
#45
|
||||
|
||||
|
Quote:
Login Page URL: www.yourdomain.com/webmail.html @Mail Server URL: webmail.yourdomain.com Certainly you could create a subdomain in H-Sphere and host the webmail login page there, but I would suggest then making another DNS "A" record for @Mail (ie: atmail.yourdomain.com) and having the login page point to that for it's form action. Feel free to PM me if you'd like a little assistance with setup. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to make a custom login page for atmail for our clients? | dipu | Chit Chat Public | 2 | 06-29-2003 10:46 AM |