# # variable data for: perl lib for cgi scripts - version 1.1i # published under the GNU General Public License # # (c) rasca gmelch, berlin 1995 # [rasca@marie.physik.tu-berlin.de] # ## configuration part ############################################### $Lib_lang = "en"; # default language $Lib_date_prg = "date \"+%d.%m.%y %H:%M:%S\""; $Lib_MTA = "/usr/lib/sendmail"; $Lib_background = "/pics/yellow.gif"; $Lib_header_de = "[Logo]"; $Lib_header_en = "[Logo]"; $Lib_footer_de = "[Hauptseite]\n" . "__BACK__" . "
\n© 1995 by big brother"; $Lib_footer_en = "[Home]\n" . "__BACK__" . "
\n© 1995 by big brother"; # hostname and aliases: # the dns lookup function in perl does not work very well # for my perl-version, so i made a workaround by adding some # aliases .. and the real hostname. # $Lib_hostname = "lupo.cib.linuxnet.org"; @Lib_aliases = ("www.cib.linuxnet.org:8080", "www.cib.linuxnet.org", "lupo.cib.linuxnet.org:8080", "www:8080", "www:80", "www", "lupo:8080", "192.168.54.1"); ## end of configuration part ########################################