Hi Yvonne,
     If you know some SMTP commands, you can use smtp commands to test if 
postfix is functioning properly. Refer to this for more on SMTP 
http://www.yuki-onna.co.uk/email/smtp.html




________________________________
 From: "[email protected]" <[email protected]>
To: [email protected] 
Sent: Saturday, May 11, 2013 3:00 AM
Subject: Koha Digest, Vol 91, Issue 18
 

Send Koha mailing list submissions to
    [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
    http://lists.katipo.co.nz/mailman/listinfo/koha
or, via email, send a message with subject or body 'help' to
    [email protected]

You can reach the person managing the list at
    [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Koha digest..."


Today's Topics:

   1. Koha mini conference at Shanxi, China (Anthony Mao)
   2. email configuration (Yvonne Wambui)
   3. Koha 2.2.8 to 3.0 upgrade (lankanatha)
   4. Partners in Developing NCIP for Koha (Nora Blake)
   5. Re: New Report Update (Cab Vinton)
   6. Call for news for the May newsletter (Daniel Grobani)


----------------------------------------------------------------------

Message: 1
Date: Fri, 10 May 2013 13:43:12 +0800
From: Anthony Mao <[email protected]>
To: [email protected]
Cc: ??? <[email protected]>
Subject: [Koha] Koha mini conference at Shanxi, China
Message-ID:
    <CAKzJnzP3=gBwYKoE6N0XDjo_k=CkUnMQT8zPwpNd_nRA=fx...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

Hi,

I would like announce this infomation for Koha users, expecially those
interested in Chinese.

There is a Koha mini conference at Shanxi, China.  Detail as:
Date: June 21-22, 2013
Place: Library, Taiyuan University of Technology(TUT), No.79 West
Yingze Street, Taiyuan 030024, Shanxi, China
Organizer: Library, Taiyuan University of Technology(TUT)
Contact: ??? [email protected]

Any one interested may contact me to get an invitation.
You are wellcomed to contact organizer in Chinese only.

-- 
Wishing you all the best. . . .


Anthony Mao ???
?886 2 29052334 (voice)
+ 886 2 29017405 (FAX)


------------------------------

Message: 2
Date: Fri, 10 May 2013 14:26:20 +0300
From: Yvonne Wambui <[email protected]>
To: [email protected]
Subject: [Koha] email configuration
Message-ID:
    <CAHU-=YauVPjyjQtm2ixDDNxx5g1VS2JWv0eXji5oAcDk=yn...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

hey,
how do i test if postfix is sending email


------------------------------

Message: 3
Date: Fri, 10 May 2013 09:18:10 -0700 (PDT)
From: lankanatha <[email protected]>
To: [email protected]
Subject: [Koha] Koha 2.2.8 to 3.0 upgrade
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii

Hi all,
i want upgrade my koha database.its working properly for english
language..but not working for local languages.
old database contains latin1
koha 3 has utf8
how do i do that? after conversion local language fonts are not readable.
need help.
thanks.



--
View this message in context: 
http://koha.1045719.n5.nabble.com/Koha-2-2-8-to-3-0-upgrade-tp5754224.html
Sent from the Koha-general mailing list archive at Nabble.com.


------------------------------

Message: 4
Date: Fri, 10 May 2013 16:27:01 +0000
From: Nora Blake <[email protected]>
To: Koha list <[email protected]>
Subject: [Koha] Partners in Developing NCIP for Koha
Message-ID:
    <ced1d77880344ee69d155fba51f4a...@blupr05mb101.namprd05.prod.outlook.com>
    
Content-Type: text/plain; charset="us-ascii"

Hello all,

Our consortium is looking to develop NCIP connectors for the Koha system.  We 
have a project with a very specific and aggressive timeline in place.  We 
intend to have this coded and fully tested by the end of July 2013 as we have 
an ILL system within our state that we need to begin connecting to by the 
beginning of September 2013.

This project will be expensive and we are looking outward to see if there are 
other Koha users that have an immediate need for NCIP capabilities and would be 
interested in partnering with us on this project.  In order to make the 
partnership productive and effective, you would really need to have a system 
that you want to test NCIP with and you would need to be willing to share in 
the full cost of the project with us.

Please get in touch with me if you would like to work with us on this.

Thanks,

Nora
________________________

Nora Blake
MassCat Manager
Massachusetts Library System
P.O. Box 609
South Deerfield, MA 01373-0241
508-357-2121 x123
866-627-7228
Email: [email protected]
AIM: noraatmls 




------------------------------

Message: 5
Date: Fri, 10 May 2013 14:21:35 -0400
From: Cab Vinton <[email protected]>
To: Koha list <[email protected]>
Subject: Re: [Koha] New Report Update
Message-ID:
    <cabw43us-ppn5t7ysiqtf7ykkrn-wxh3qpd0o8rvuhu_gjwe...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

Holds Queue Workaround

   - *Developer:* George H. Williams - Latah County Library District
   - *Module:* Holds
   - *Purpose:* In Koha 3.10 there is a bug that is making the built in
   "Holds queue" report in the circulation module work incorrectly (bug 9950).
   This report can act as a replacement for the built in report until the bug
   is fixed.
   - *Status:* Complete

SELECT items.location, authorised_values.lib_opac AS 'COLLECTIONCODE',
items.itemcallnumber, items.enumchron, biblio.author, biblio.title,
     items.barcode
  FROM reserves JOIN biblio ON reserves.biblionumber = biblio.biblionumber
     JOIN borrowers ON reserves.borrowernumber = borrowers.borrowernumber
     JOIN items ON biblio.biblionumber = items.biblionumber
     LEFT JOIN hold_fill_targets ON reserves.biblionumber =
hold_fill_targets.biblionumber
     AND reserves.borrowernumber = hold_fill_targets.borrowernumber
     LEFT JOIN branchtransfers ON items.itemnumber = branchtransfers.itemnumber
     LEFT JOIN authorised_values ON items.ccode =
authorised_values.authorised_value
  WHERE ((authorised_values.category)="ccode")
     AND ((reserves.reservedate)<=now())
     AND ((reserves.suspend)=0)
     AND ((reserves.waitingdate) IS NULL)
     AND ((reserves.priority)=1)
     AND ((items.notforloan)=0)
     AND ((items.damaged)=0)
     AND ((items.itemlost)=0)
     AND ((items.wthdrawn)=0)
     AND ((items.onloan) IS NULL)
     AND ((reserves.itemnumber) IS NOT NULL
     AND (reserves.itemnumber)=items.itemnumber)
     AND ((items.itype)<>"REF")
     AND ((hold_fill_targets.itemnumber) IS NULL)
     OR (authorised_values.category="ccode"
     AND hold_fill_targets.itemnumber=items.itemnumber)
  GROUP BY items.holdingbranch, authorised_values.lib_opac,
items.itemcallnumber, items.enumchron, biblio.author, biblio.title,
items.barcode, reserves.branchcode
  HAVING items.holdingbranch=<<Branch filled at|branches>>
     AND Count(branchtransfers.datesent)=Count(branchtransfers.datearrived)
  ORDER BY items.location, authorised_values.lib_opac,
items.itemcallnumber, items.enumchron, biblio.author, biblio.title ASC


------------------------------

Message: 6
Date: Fri, 10 May 2013 11:45:46 -0700
From: Daniel Grobani <[email protected]>
To: "[email protected]" <[email protected]>,
    [email protected]
Subject: [Koha] Call for news for the May newsletter
Message-ID:
    <caoekewhy4kqvgjqa_lfvmpw8nrupnu4ojzf47zf1aotfxgw...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

Dear Koha kommunitarians,

I'm harvesting news for this month's newsletter. Please send me by the
20th anything you think your fellow community members might like to
know about.

"News" can be as short as a sentence or as long as a paper. I
especially encourage you to send me a line or two for the
gossip/society column about what you're currently working on.

And if you know of a go-live not announced on the list, please be sure
to let me know about it.

Thanks,
Daniel Grobani


------------------------------

_______________________________________________
Koha mailing list
[email protected]
http://lists.katipo.co.nz/mailman/listinfo/koha


End of Koha Digest, Vol 91, Issue 18
************************************
_______________________________________________
Koha mailing list  http://koha-community.org
[email protected]
http://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to