Author |
|
hasanmak Newbie
Joined: 24 June 2011 Location: Turkey
Online Status: Offline Posts: 10
|
Posted: 24 June 2011 at 1:23am | IP Logged
|
|
|
Hi,
I have enabled poppassd-change-password on config.php , but when I try change password on webmail, I have this message: Can't save new password.
How to enable POPPASSD on Windows server 2008.
Thanks
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 24 June 2011 at 1:25am | IP Logged
|
|
|
Do you have POPPASSD service enabled and configured to run along with your mail server? Does it use standard port 106?
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
hasanmak Newbie
Joined: 24 June 2011 Location: Turkey
Online Status: Offline Posts: 10
|
Posted: 24 June 2011 at 1:32am | IP Logged
|
|
|
Hi Igor,
How do I know that it is active ?
I'm using mailenable on Plesk
Thanks
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 24 June 2011 at 1:35am | IP Logged
|
|
|
In case if POPPASSD service is enabled, it would respond when accessed via telnet like this:
Please note that access might be blocked from remote machines for security reasons, so that only local access (via SSH, for instance) would work.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
hasanmak Newbie
Joined: 24 June 2011 Location: Turkey
Online Status: Offline Posts: 10
|
Posted: 24 June 2011 at 1:43am | IP Logged
|
|
|
Hi ,
When I try on telnet , 'open 127.0.0.1 106' on local machines ( server ),
I have this message;
"Connecting To 127.0.0.1... Could not open connection to the host, on port 106: Connect failed"
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 24 June 2011 at 1:48am | IP Logged
|
|
|
In that case, if you're certain POPPASSD service is there, request its configuration details from people who were setting it up.
In case if POPPASSD is not available in your environment, you'll need to install and configure it first, and if you need assistance on this, consider contacting your hosting support team.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
hasanmak Newbie
Joined: 24 June 2011 Location: Turkey
Online Status: Offline Posts: 10
|
Posted: 26 June 2011 at 12:42am | IP Logged
|
|
|
Hi,
Problem solved ;
Start->Run->cmd
Command;
C:\Documents and Settings\Administrator>tasklist /svc | find "PopPassD"
Response;
PopPassD.exe 20776 PopPassD
Command;
C:\Documents and Settings\Administrator>netstat -ano | find "20776"
Response;
TCP 127.0.0.1:8106
This means Poppassd works on 8106 ( for my server )
config.php
<?php
return array(
'plugins.poppassd-change-password' => true,
'plugins.poppassd-change-password.config.host' => "127.0.0.1",
'plugins.poppassd-change-password.config.port' => 8106
);
it's done and work :)
|
Back to Top |
|
|