0

我正在尝试在我的局域网上的 apache2、ISPCONFIG3 服务器上安装 roundcube: https ://www.howtoforge.com/using-roundcube-webmail-with-ispconfig-3-on-debian-wheezy-apache2 并进行了以下更改:remoteuser roundcube 通过密码809098 和 https://www.rosehosting.com/blog/how-to-install-roundcube-webmail-on-ubuntu-20-04/ 进行这些更改:

GRANT ALL PRIVILEGES ON roundcube.* TO roundcubeuser@localhost IDENTIFIED BY 'password';

nano /etc/apache2/sites-available/roundcube.jungsf.tv.conf
a2ensite roundcube.jungsf.tv
<VirtualHost *:80>
  ServerName roundcube.jungsf.tv 
  DocumentRoot /var/www/roundcube/

  ErrorLog ${APACHE_LOG_DIR}/roundcube.jungsf.tv_error.log
  CustomLog ${APACHE_LOG_DIR}/roundcube.jungsf.tv_access.log combined

    Options FollowSymLinks
<Directory "/var/www/roundcube/">
    AllowOverride All
</Directory>

    Options FollowSymLinks MultiViews
<Directory "/var/www/roundcube/">
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>
</VirtualHost>

我最终设法通过http://jungsf.tv/webmail获得了 roundcube 网络界面, 但它仍然无法登录,我不知道应该是哪个密码/用户名,我尝试了所有组合 roundcube/roundcubeuser/email ....密码,密码,密码809098

如何找到用户/通行证或如何删除所有内容以重新安装它?我看到了这个插件来设置通过,但是我该如何使用它呢? https://github.com/saas-dev/roundcube-forgot_password

4

1 回答 1

1

我设法通过在ispconfig3中创建邮箱来工作,在那里我输入了用于登录roundcube的电子邮件和密码。

于 2021-02-18T10:35:15.090 回答