Download | Plain Text | No Line Numbers


  1. diff -Naur dovecot-2.2.31.orig/src/auth/auth-request.c dovecot-2.2.31/src/auth/auth-request.c
  2. --- dovecot-2.2.31.orig/src/auth/auth-request.c 2017-06-26 13:29:36.000000000 +0200
  3. +++ dovecot-2.2.31/src/auth/auth-request.c 2017-08-02 22:33:17.337691170 +0200
  4. @@ -2515,6 +2526,14 @@
  5. str_append_c(str, ',');
  6. str_append(str, ip);
  7. }
  8. +
  9. + if (auth_request->service != NULL) {
  10. + str_append_c(str, ',');
  11. + str_append(str, auth_request->service);
  12. + }
  13. + if (auth_request->secured)
  14. + str_append(str, ",secured");
  15. +
  16. if (auth_request->requested_login_user != NULL)
  17. str_append(str, ",master");
  18. if (auth_request->session_id != NULL)
  19.