[Bug 7174] New: Authentication rewriting
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Bug #: 7174 Summary: Authentication rewriting Classification: Unclassified Change sponsored?: --- Product: Koha Version: master Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing AssignedTo: paul.poulain@biblibre.com ReportedBy: paul.poulain@biblibre.com QAContact: ian.walls@bywatersolutions.com Blocks: 7119 Auth.pm does too many things, it must be splitted in smaller parts. In 3.6, it does : - authentifying - checking & setting permissions - setting a lot of syspref available on each template (many of them being unused in most templates) - retrieving template How to do it is still to be discussed. This entry is low priority, once we will have plack, for example, it may be obvious to use Plack authentication tools. -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Dobrica Pavlinusic <dpavlin@rot13.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dpavlin@rot13.org -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #1 from Dobrica Pavlinusic <dpavlin@rot13.org> --- If we get rid of C4::Auth for plack auth layer, we would loose ability to execute Koha with CGI. Is this a goal? I would love to get some work done on existing C4::Auth. Bug 7810 mentions possible improvement in our cookie usage for example. Would it make sense to open bug for it and attach dependency to this one? -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #2 from Paul Poulain <paul.poulain@biblibre.com> --- (In reply to comment #1)
If we get rid of C4::Auth for plack auth layer, we would loose ability to execute Koha with CGI. Is this a goal?
I think that could be a goal, but not a short term one. My feeling, but it's just a feeling is that: * 3.8 will have plack support as experimental * 3.10 will have plack support by default * 3.12 will have plack support only. I can't see a valid reason to keep CGI mode for Koha. This is much different from zebra/solr for example, where there can be some valid arguments to keep both search engines. PS: this bug had been created in Mumbai, during hackfest11 -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #3 from Ian Walls <koha.sekjal@gmail.com> --- I don't believe that we should wed Koha to Plack as a Fast CGI tool anymore than we should be wedded to MySQL as our database. If we aim to implement PSGI as our standard, we'd have Koha working on Plack, FastCGI or mod_perl, which would let the institution doing the hosting choose how to set up their machines. As for keeping CGI... I'm not sure whether we need to or not, if we've got a good selection of PSGI options that can run on a wide range of hardware. So long as the move away from CGI doesn't disenfranchise anyone running Koha on an older or low-spec machine, I think it could be okay. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #4 from Paul Poulain <paul.poulain@biblibre.com> --- (In reply to comment #3)
I don't believe that we should wed Koha to Plack as a Fast CGI tool anymore than we should be wedded to MySQL as our database. If we aim to implement PSGI as our standard, we'd have Koha working on Plack, FastCGI or mod_perl, which would let the institution doing the hosting choose how to set up their machines. That's a valid point. OTOH I think we must *highly* improve our authentification workflow (read: rewrite it completely ;-) ) So if we can find a solution for that ...
As for keeping CGI... I'm not sure whether we need to or not, if we've got a good selection of PSGI options that can run on a wide range of hardware. So long as the move away from CGI doesn't disenfranchise anyone running Koha on an older or low-spec machine, I think it could be okay.
well= I have absolutely no doubts that Koha+Plack will work *better* on low-spec machines than in CGI ! 1 thread, keep alive for 30 requests means, according to dobrika, 60MB On a low-spec machine, the number of Plack threads can be limited to 3 or 2 instead of 6, to reach a low memory consumption. (I don't count the plack itself here. Dobrika, if you can give us numbers... -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Martin Renvoize <martin.renvoize@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize@ptfs-europe | |.com Component|Architecture, internals, |Authentication |and plumbing | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |olli-antti.kivilahti@jns.fi --- Comment #5 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- I have been looking into this issue because of Bug 13799 and 13920. I have been analyzing the C4::Auth and draw a specification to streamline it a LOT. https://docs.google.com/drawings/d/15w-P9rF_2lJIXX_vda-tPDzpB2ZMt02coMJofKjJ... -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #6 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 40672 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40672&action=edit Bug 7174 - Authentication rewriting - I have come here to chew bubblegum and kick ass... and I'm all out of bubblegum. WIP WIP, sharing just for people to keep up. Deprecating lots of stuff. Encapsulating authentication behaviour into nice reusable modules. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #7 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 40678 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40678&action=edit Bug 7174 - Authentication rewriting - LDAP Component - WIP -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #8 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 40680 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40680&action=edit Bug 7174 - Authentication rewriting - Looking into generating a superuser and encapsulating it nicely. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #9 from M. Tompsett <mtompset@hotmail.com> --- Comment on attachment 40678 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40678 Bug 7174 - Authentication rewriting - LDAP Component - WIP Review of attachment 40678: --> (http://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=7174&attachment=40678) ----------------------------------------------------------------- ::: C4/Auth_with_ldap.pm @@ +115,2 @@
sub checkpw_ldap { + my ($userid, $password) = @_;
If we are rewriting, could we please hashref everything? :) -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |14437 -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #10 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- (In reply to M. Tompsett from comment #9)
Comment on attachment 40678 [details] [review] Bug 7174 - Authentication rewriting - LDAP Component - WIP
Review of attachment 40678 [details] [review]: -----------------------------------------------------------------
::: C4/Auth_with_ldap.pm @@ +115,2 @@
sub checkpw_ldap { + my ($userid, $password) = @_;
If we are rewriting, could we please hashref everything? :)
I would like to hear more about the benefits of hashreffing? -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #11 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 40723 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40723&action=edit Bug 7174 - Authentication rewriting - Things are getting more serious. And problematic. Deprecating lots of stuff. Encapsulating authentication behaviour into nice reusable modules. Wondering about all the tiny flags and conditionals. Creating the first a -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #40672|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #40678|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #40680|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #12 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 40739 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40739&action=edit Bug 7174 - Authentication rewriting - Things are getting more serious. And problematic. Deprecating lots of stuff. Encapsulating authentication behaviour into nice reusable modules. Wondering about all the tiny flags and conditionals. Creating the first authentication route. See Koha::Auth::Route for "interface" definition. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #40723|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Bug 7174 depends on bug 14437, which changed state. Bug 14437 Summary: Refactor C4::Auth::haspermission() to Koha::Object and return better errors. http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14437 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |RESOLVED Resolution|--- |INVALID -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #13 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41117 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41117&action=edit AuthenticationRewrite schematic -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #14 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41124 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41124&action=edit Bug 7174 - Authentication Rewrite Depends heavily on Buugg 14540, which introduces many tests to spot regression caused by this feature. Introduces a new modular authentication system based on Exception signaling and reusable authentication components/challenges. This system is cross-framework -compatible, currently supporting Mojolicious and CGI, but adding support for any other framework is straightforward. Central idea is to provide a single authentication function to deal with all types of authentication scenarios, REST API, Cookie, Password, LDAP... Also it is important to make a system that is easy to extend and can deal with many future authentication scenarios. Currently only CGI password, LDAP and cookie login is tested. Legacy behaviour is used to deal with other types of authentication. Deprecates a lot of subroutines in C4::Auth. See the attached schematic in Bugzilla for a more architectural overview. The basic principle is: 1. We get an authentication request from any Web/GUI-framework, for ex CGI. 2. Request is normalized by extracting all necessary authentication data elements to a separate data structure. 3. Based on the found authentication data elements, system decides which authentication route to take. 4. Route implements all challenges needed to authenticate the request. Route returns the authenticated Koha::Borrower or an Exception if login failed. 5. The user environment/session is set/deleted based on the Route result. 6. a Koha::Borrower and the CGISESSID-cookie is returned to the calling framework in the format the framework needs. 7. Framework needs to catch possible exceptions and deal with them. Eg. login failed, no permission, under maintenance. 8. Authentication succeeds and session is set, or failure is reported to user. ----------------------------------- -::- TEST PLAN: -::- ----------------------------------- Use PageObject tests from Buugg 14540 and Buugg 14536 to test against regression. ::MANUAL TESTS:: OPAC: 1. Go to opac-main.pl 1.1. Try to access a restricted page like /cgi-bin/koha/opac-account.pl 2. Login with password. 3. Navigate to any OPAC page requiring login. 4. Observe that the login is still valid and correct username is displayed on top right of the browser window. 5. Logout 5.1. Try to access a restricted page. 6. Login again. 7. Browse a bit. 8. Logout. Anonymous search history (OPAC): 1. Make a search 2. Make another search 3. Login 4. Make yet another search 5. Go to my search history. 6. Observe that the last three searches are shown in your search history. 7. Logout STAFF CLIENT (Intra): 0. Try to access a restricted page, like /cgi-bin/koha/mainpage.pl 1. Login 2. Navigate a bit to confirm that the login remains active. 3. Logout. 4. Login again. 5. Navigate to a restricted page. 6. Logout. 6.1. Try to access a restricted page. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|14437 |14540 Assignee|paul.poulain@biblibre.com |olli-antti.kivilahti@jns.fi Status|NEW |Needs Signoff Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14437 [Bug 14437] Refactor C4::Auth::haspermission() to Koha::Object and return better errors. http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14540 [Bug 14540] Move member-flags.pl to PermissionsManager to better manage permissions for testing. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #40739|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #15 from M. Tompsett <mtompset@hotmail.com> --- Comment on attachment 41124 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41124 Bug 7174 - Authentication Rewrite Review of attachment 41124: --> (http://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=7174&attachment=41124) ----------------------------------------------------------------- What about CAS? About PKI authentication? Until someone write instructions on how to set those up for testing, I fear something is likely broken. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Large patch CC| |m.de.rooy@rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #16 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- (In reply to M. Tompsett from comment #15)
Comment on attachment 41124 [details] [review] Bug 7174 - Authentication Rewrite
Review of attachment 41124 [details] [review]: -----------------------------------------------------------------
What about CAS? About PKI authentication? Until someone write instructions on how to set those up for testing, I fear something is likely broken.
Very true. The C4::Auth subroutine interfaces haven't changed at all so there "should" be no issues. It would be great if somebody who knows how to set them up could help with this. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Julian Maurice <julian.maurice@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julian.maurice@biblibre.com -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #41124|0 |1 is obsolete| | --- Comment #17 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41159 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41159&action=edit Bug 7174 - Authentication Rewrite -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #41159|0 |1 is obsolete| | --- Comment #18 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41256 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41256&action=edit Bug 7174 - Authentication Rewrite -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |13799 Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13799 [Bug 13799] Add base for building RESTful API -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #41256|0 |1 is obsolete| | --- Comment #19 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41311 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41311&action=edit Bug 7174 - Authentication Rewrite - Core -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 --- Comment #20 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41312 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41312&action=edit Bug 7174 - Authentication Rewrite - Wrapper for C4::Auth -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #41311|0 |1 is obsolete| | --- Comment #21 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41413 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41413&action=edit Bug 7174 - Authentication Rewrite - Core Fixed Cookie authentication to work behind a reverse proxy -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #41413|0 |1 is obsolete| | --- Comment #22 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41536 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41536&action=edit Bug 7174 - Authentication Rewrite - Core -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #41312|0 |1 is obsolete| | --- Comment #23 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Created attachment 41537 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41537&action=edit Bug 7174 - Authentication Rewrite - Wrapper for C4::Auth -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Lari Taskula <larit@student.uef.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |14620 Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14620 [Bug 14620] Contact information validations -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Fridolin SOMERS <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers@biblibre.co | |m -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Julian Maurice <julian.maurice@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |13920 Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13920 [Bug 13920] API authentication system - proposal -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Julian Maurice <julian.maurice@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|13799 | Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13799 [Bug 13799] Add base for building RESTful API -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Lari Taskula <larit@student.uef.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |14723 Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14723 [Bug 14723] Additional delivery notes to messages -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Lari Taskula <larit@student.uef.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|14723 | Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14723 [Bug 14723] Additional delivery notes to messages -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Lari Taskula <larit@student.uef.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |14723 Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14723 [Bug 14723] Additional delivery notes to messages -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Lari Taskula <larit@student.uef.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |14843 Referenced Bugs: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14843 [Bug 14843] Notifications and messages via REST API -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174 Jacek Ablewicz <abl@biblos.pk.edu.pl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |abl@biblos.pk.edu.pl -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org