![]() |
Great! Thanks for the heads up Gruntie!
|
Quote:
EDIT: I guess I do not have IMAP now maybe? |
[QUOTE]
Quote:
|
Yeah I thought that was it, I missed the one post where someone else had the same error.
Contacted server and IMAP should be good to go in about 30 mins. Thank you for the quick reply :D |
Quote:
Myself and a few customers are using it.. It is pretty cool... It's not hivemail.. but again it's free ;) |
Nice hack...
Sure Hivemail seems nice, but for those offering POP e-mail or planning too, this should be great! Thanks... |
So is it for only one account or can I have several users for it?
Can it be interated with HiveMail, have you thought about it? |
The open-stream-error:
Ik took me some hours to figure it out, but this seems to be the solution: $MAILSERVER="{my.server.com:143/imap/notls}INBOX"; or $MAILSERVER="{pop.server.com:143/pop3/notls}INBOX"; $mbox = imap_open ($MAILSERVER, "username", "password"); Then, it works!!! It happens when you use a self-signed certificate. The notls-thing tells it not to check for it. Hope this will lead to a new version? |
I run a number of qmail servers that are set up with virtual accounts. In order to access the account, you have to enter the full e-mail address, ie mymail@mymail.com as the username, as well as the server address. This causes the address in the "From:" header and a few other places to show up as mymail@mymail.com@mymail.com.
Here's how to correct that: 1) Look for: //CHANGE SETTINGS ABOVE// Below it add: $email_regular_expression="^([-!#\$%&'*+./0-9=?A-Z^_`a-z{|}~ ])+@([-!#\$%&'*+/0-9=?A-Z^_`a-z{|}~ ]+\\.)+[a-zA-Z]{2,4}\$"; 2) Replace if ($session_username) $errormessage .= " - ".$session_username."@".$session_server; with if (eregi($email_regular_expression, $session_username)) { if ($session_username) $errormessage .= " - ".$session_username; } else { if ($session_username) $errormessage .= " - ".$session_username."@".$session_server; } 3) For each single line occurence of $generated=$session_username."@".$session_server; (there are two), replace it with if (eregi($email_regular_expression, $session_username)) { $generated=$session_username; } else { $generated=$session_username."@".$session_server; } That should take care of it. |
Quote:
Warning: Couldn't open stream {pointbeing.com:110/pop3}INBOX in /usr/www/bassforum/email.php on line 618 I own the mail and web server. Neither pop3 nor IMAP work. IMAP is compiled into php (Squirrelmail runs flawlessly) username, password and mail server are correct. vB version is 2.3.0 Any ideas? I just downloaded and installed this about half an hour ago so I'm pretty sure it's the current version :) |
All times are GMT. The time now is 12:49 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|