Koha/Post-Installation

From Libopedia
Revision as of 13:39, 30 September 2013 by Hgibson (talk | contribs)
Jump to navigation Jump to search

Step 1 - Setup email delivery

  • Install mail delivery agent
sudo apt-get install postfix

When asked for type of configuration, select Internet with smarthost. The smarthost is your campus email server, for example at Stellenbosch University that server is: mail.sun.ac.za

  • Deliver koha user email to designated recipients
sudo nano /etc/aliases

See example below. Replace the example email addresses with your email addresses.

# Added by installer for initial user
root:	me@my.edu
koha:   me@my.edu, you@my.edu

After saving the file, run the following command.

sudo newaliases

Enable command line email utils

sudo apt-get install mailx

Send a test email to yourself, by typing and pressing enter.

mail -s "Test from KOHA server" root, me@my.edu

Type in some content for the email, then press CTL+d to deliver the email.

You can check the log at /var/log/mail.log for more info of delivery.

Help

Tips

Step 2 - Setup custom website style

  • Select the "ccsr" theme using the opacthemes parameter in the admin interface.
  • Setup the opacsmallimage in the admin interface.
  • See the highlighted red boxes in the screenshot below for customisable areas of the OPAC web interface.

Koha.png

  • The following folder contains the CCS files to style the OPAC client depending on which theme you selected.
/usr/share/koha/opac/htdocs/opac-tmpl
  • The following folder contains the CCS files to style the admin interface.
/usr/share/koha/intranet/htdocs/intranet-tmpl

Help


Step 3 - Enable LDAP user ID and authentication

To do.

Step 4 - Enable Plugins

Help

Return to Koha wiki page