@klausade
Thanks for that helpful information. Your line showed backticks instead the apostrophe, I had to correct the line:
error_log('Kopano WebApp user: ' . $username . ': authentication success at MAPI');
Now my “/usr/share/kopano-webapp/server/includes/core/class.webappauthentication.php” looks like that:
if (WebAppAuthentication::$_errorCode === NOERROR ) {
WebAppAuthentication::$_authenticated = true;
error_log('Kopano WebApp user: ' . $username . ': authentication success at MAPI');
and I get successfully the message logged as you explained. Great!
@marty said in Logging of login attemts:
I’ve made a ticket: https://jira.kopano.io/browse/KW-3375
and added a small fix, hidden behind a new config option, because not everyone wants this enabled by default.
thank you Marty. It would be nice to have the option to specify a separate logfile for succeeded or failed logins which one could use for post-analyzing procedures (security measurements).
Now I still wonder if it’s possible to get succeeded attaches of a shared mailbox. Will that work somehow similar ?