index.pl
上传用户:dostar
上传日期:2007-01-04
资源大小:21k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

Perl

  1. #!/usr/local/bin/perl
  2. BEGIN { $APP_PATH=$0; $APP_PATH=~s/(/*)[^/]+$/$1/g; }
  3. require $APP_PATH."common.pl";
  4. require $APP_PATH."config.pl";
  5. print "Content-type:text/htmlnn";
  6. print '
  7. <html>
  8. <head>
  9. <title>NikoSoft WebMail</title>
  10. </head>
  11. <frameset rows=90,* border=0 marginheight=0>
  12. <frame src=../title.htm name=title>
  13. <frame src='.$CGI_PATH_NSWM.'login.pl name=dyna>
  14. </frameset>
  15. </html>
  16. ';
  17. exit;