跳至主要内容

linux搭建邮箱服务器

安装服务器
docker run --name=axigen -dt --restart=always -v /home/project/email/data/:/var/opt/axigen -p 25:25 -p 143:143 -p 9001:9000 -p 110:110 axigen/axigen


然后在邮箱客户端设置imap方式

收信 端口143

发信 端口25

评论

此博客中的热门博文

ubuntu 添加root登录

Login to your server as root. As the root user, edit the sshd_config file found in  /etc/ssh/sshd_config : vim /etc/ssh/sshd_config ( For details on working with Vim check out our article here !) Add the following line to the file, you can add it anywhere but it’s good practice to find the block about authentication and add it there. PermitRootLogin yes Save and exit the file. Restart the SSH server: systemctl restart sshd or service sshd restart