process_login.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. if ( $c_application == '' ) {
  3.      if ( is_object( $app_server->apps[ 'PIMP' ] ) ) {
  4.       $current_application = 'PIMP';
  5.      }
  6.    } else {
  7.       $current_application = $c_application;
  8.    }
  9.    $session->Add(
  10.    $temp = new SessionElement( 'user',            'string' )
  11.    );
  12.    $session->Add( 
  13.    $temp = new SessionElement( 'password',        'string' )
  14.    );
  15.    $session->Add( 
  16.    $temp = new SessionElement( 'domain_id',       'string' )
  17. );
  18. if ( $current_application == 'PIMP' ) {
  19.    $obj_ref = $app_server->apps[ 'PIMP' ];
  20.    $obj_ref->handle( 'MAIL_CHECK_MAILBOX' );
  21. }
  22. ?>