如何在apache james中为用户更改密码

时间:2016-11-09 01:47:15

标签: email passwords james


我想将密码更改为詹姆斯服务器的特定用户 感谢

2 个答案:

答案 0 :(得分:4)

您可以通过Telnet

连接到James Remote Administration Tool
telnet <ip> 4555

默认凭据为登录: root 密码: root

连接后,只需运行以下命令:

setpassword [username] [password]

答案 1 :(得分:1)

更好:使用项目提供的命令行客户端。

它在引擎盖下使用JMX。 CLI是包含服务器的每个分发的包。 (你甚至可以从这里通过maven执行它:https://github.com/apache/james-project/tree/master/server/container/cli

然后,fnkrm是对的,你应该去setpassword。

或者,在3.0-betax上,我们提供可选的管理REST API。 https://github.com/apache/james-project/tree/master/server/protocols/webadmin。如果感兴趣,请查看相应的泊坞窗图像。

干杯,

贝努瓦。