My SMTP server requires authentication, and I am
assuming that it is the reason I get the "An error
occurred : 250 is syntactically correct" error message.
Is there any way I can fix this?
Another problem that we are having is when the
software applies the domainname tag to the end of the
username because our usernames are full email
addresses (EX- user@phatebot.com). Is there any way I
can fix this also?
Your help would be appreciated, the staff at
www.PhateBot.com would be pleased to assist you with
any webspace/hosting/testing/email addresses/FTP you
require.
Logged In: YES
user_id=564219
Actually guys, After much playing around with script, I got it
worked out!
Logged In: YES
user_id=20872
Refiled as a 'feature request' for the SMTP authentication
stuff. If you've got any tips, please post them :)
Logged In: YES
user_id=606355
I have modified NOCC 0.9.5 in this way:
->conf.php at every $domains[x] add a row
$domains[0]->userdomain = false;
(true if the server require the user as user%domain)
and 10 row after end of cunfiguration area add
$userdomain=$domains[$domainnum]->userdomain;
->action.php after row n.24 add this 2 lines
$userlog=$user;
if ($userdomain) $userlog=$user."%".$domain;
$userlog is the variable used at logon to pop server.
->action.php change the $user in $userlog at every call of
function aff_mail( view_part( save_attachment( inbox(
->get_img.php / download.php / delete.php
change $user to $userlog at every call of imap_open(
That's All (i hope don't miss anythings....)
Logged In: YES
user_id=29685
Anyone to attach patches as per last barbit comment ?
Logged In: YES
user_id=529507
SMTP AUTH LOGIN and SMTP AUTH PLAIN methods are now
implemented within the CVS version
Logged In: YES
user_id=529507
About domain name to the end of the username, you should see
with this in the conf.php file:
// Uncomment for 'user@domain.com' style logins
//$conf->domains[$i]->login_with_domain = 1;
Logged In: YES
user_id=529507
- SMTP Auth : fixed in CVS
- domainname : won't fix, see in conf.php