RainLoop / rainloop-webmail

Simple, modern & fast web-based email client
http://rainloop.net
MIT License
4.1k stars 886 forks source link

No captcha on login screen #895

Open digititus opened 8 years ago

digititus commented 8 years ago

I have just activated the captcha plugin. However, when I access the login page, no captcha is displayed (I have tried multiple browsers), yet when logging in with username and password I get 'incorrect CAPTCHA.' Now Admin user (and all users) are locked out and I can't access settings to turn off this feature. Is there a way to get access again by editing one of the config files?

RainLoop commented 8 years ago

Have you tried to disablecaptcha plugin in the admin panel?

digititus commented 8 years ago

I couldn't access the admin panel. It wanted a captcha ;) I had to remove the plugin from /var/www/rainloop/public_html/data/_data_xxxxxxxx/default/plugins/ to regain access.

RainLoop commented 8 years ago

Thanks, It might be a bug. Admin panel login does not require captcha.

ESVDESIGNER commented 7 years ago

if you want to protect your admin area, you can use htaccess and limit only your ip to access

*replace the REMOTE_ADDR 000.000.000.000 with your own ip address

RewriteEngine On RewriteCond %{REMOTE_ADDR} !^000.000.000.000 RewriteCond %{QUERY_STRING} admin [NC] RewriteRule ^ %{REQUEST_URI} [L,R=301,QSD]

*This is for apache v2.4 mod rewrite syntax