Impossible to register on Koha site
It was impossible to me to create an account on Koha site (to contribute[0]) I tried with several usernames and different email addresses and always get this error: "Error: Failed to create your account: we were unable to send your password to your email address: {'my_mail@gmail.com': (550, 'relay not permitted')} " When trying to contact Koha's site admin I also receive almost the same error: "Unable to send mail: {'site-admin@koha.org': (550, 'relay not permitted')}" What can I do...? Regards, Pablo PS: Also there is a problem with variables on footer: "El ${plonecms} es © 2000-2009 por la ${plonefoundation} y otros." PS2: It seems some things were lost in the way to Plone, like some mailing list on: http://koha.org/support/free-support [0] http://koha.org/documentation/how-to/use-help-center
LibLime has rearranged some of our mail infrastructure so that the previous mail relay was no longer valid. I've updated Plone to reflect the new settings, and sending mail now works, as does new user registration. Cheers, Clay On Fri, Nov 6, 2009 at 5:21 PM, Pablo A. Bianchi <pbianchi@fi.uba.ar> wrote:
It was impossible to me to create an account on Koha site (to contribute[0]) I tried with several usernames and different email addresses and always get this error: "Error: Failed to create your account: we were unable to send your password to your email address: {'my_mail@gmail.com': (550, 'relay not permitted')} "
When trying to contact Koha's site admin I also receive almost the same error: "Unable to send mail: {'site-admin@koha.org': (550, 'relay not permitted')}"
What can I do...?
Regards, Pablo
PS: Also there is a problem with variables on footer: "El ${plonecms} es © 2000-2009 por la ${plonefoundation} y otros." PS2: It seems some things were lost in the way to Plone, like some mailing list on: http://koha.org/support/free-support
[0] http://koha.org/documentation/how-to/use-help-center _______________________________________________ Koha-devel mailing list Koha-devel@lists.koha.org http://lists.koha.org/mailman/listinfo/koha-devel
2009/11/7 Clay Fouts <clay.fouts@liblime.com>:
LibLime has rearranged some of our mail infrastructure so that the previous mail relay was no longer valid. I've updated Plone to reflect the new settings, and sending mail now works, as does new user registration.
Thanks for your speedy work Clay, much appreciated Chris
Dear Collegues, My library purchased a Gryphon M100 433Mhz and opticon scanners which we've been using to scan barcodes at the library's circulation desk. Here are examples of Barcodes numbers generated by our software vendor; The library has a collection of 40,000 volumes. A few months ago we decided to migrate to Koha and I have already loaded all the records in Koha. However, it seems the barcodes in Alice Graduate 6.0 were entered as R110483232, R493213232, R004053232. This means the letters M, N and Y were ignored. The current challenge I have is how I could configure the gryphon M100 scanner to ignore the letters. If not, are there changes I could do in koha to ignore the 7th digit? All I am trying to avoid is to manually type the 7th Digit for the 40,000+ volumes! Kindly help. Peter Mwangi Gichiri Assistant Librarian Nairobi Evangelical Graduate School of Theology P.O. Box 24686 - 00502 Rhino Park Road, Nairobi Kenya, East Africa.
Peter Mwangi wrote:
Dear Collegues,
The library has a collection of 40,000 volumes. A few months ago we decided to migrate to Koha and I have already loaded all the records in Koha. However, it seems the barcodes in Alice Graduate 6.0 were entered as R110483232, R493213232, R004053232. This means the letters M, N and Y were ignored. The current challenge I have is how I could configure the gryphon M100 scanner to ignore the letters. If not, are there changes I could do in koha to ignore the 7^th digit? All I am trying to avoid is to manually type the 7^th Digit for the 40,000+ volumes!
Kindly help.
As you said two solutions : - I would first try and configure the scanner to skip that M,N,Y, letter. The problem is to find in your handbook the correct code and setup which will achieve that. - updating all the barcodes in koha is quite easy. But would be in three steps : first SQL update on items table to remove the MNY letter (concat and substring would help) then synch items in marc with a script prepared and meant for that (misc/maintenance directory) then reindex. Hope that helps. -- Henri-Damien LAURENT
You could also look at coding a new barcode input filter, used in C4::Circulation, sub barcodedecode(). You would want: $barcode =~ s/^(......)[MNY](.+)$/$1$2/; --Joe On Wed, Nov 11, 2009 at 4:19 AM, LAURENT Henri-Damien <laurenthdl@alinto.com
wrote:
Peter Mwangi wrote:
Dear Collegues,
The library has a collection of 40,000 volumes. A few months ago we decided to migrate to Koha and I have already loaded all the records in Koha. However, it seems the barcodes in Alice Graduate 6.0 were entered as R110483232, R493213232, R004053232. This means the letters M, N and Y were ignored. The current challenge I have is how I could configure the gryphon M100 scanner to ignore the letters. If not, are there changes I could do in koha to ignore the 7^th digit? All I am trying to avoid is to manually type the 7^th Digit for the 40,000+ volumes!
Kindly help.
As you said two solutions : - I would first try and configure the scanner to skip that M,N,Y, letter. The problem is to find in your handbook the correct code and setup which will achieve that.
- updating all the barcodes in koha is quite easy. But would be in three steps : first SQL update on items table to remove the MNY letter (concat and substring would help) then synch items in marc with a script prepared and meant for that (misc/maintenance directory) then reindex. Hope that helps. -- Henri-Damien LAURENT _______________________________________________ Koha-devel mailing list Koha-devel@lists.koha.org http://lists.koha.org/mailman/listinfo/koha-devel
participants (6)
-
Chris Cormack -
Clay Fouts -
Joe Atzberger -
LAURENT Henri-Damien -
Pablo A. Bianchi -
Peter Mwangi