config.pl
上传用户:dostar
上传日期:2007-01-04
资源大小:21k
文件大小:1k
- #!/usr/local/bin/perl
- # SMTP server address
- $SMTPserver = "<your stmp server>";
- # using SMTP VRFY ? (disable this if you get problems on new mails)
- $verifysmtp=1;
- # masquarade domain in sent mail (comment out to disable)
- $masquarade="<your domain>";
- # force pop server (leave undefined for user-selection)
- #$POPserver = "<your pop3 server>";
- # what method to use [PASS|APOP] (qpop3d doesn't support APOP with pam!)
- $POPauth = "APOP";
- # allow users to change from address
- $fake_from=1;
- # encryption key: MUST be 4 characters long
- $keycrypt="test";
- # PATHS
- $PATH_NSWM="/nswm"; # app path
- $CGI_PATH_NSWM="/nswm/cgi-bin/"; # cgi path (url)
- $temppath="/tmp/nswm"; # on the local filesystem
- $tempurl="/nswmtemp"; # directed to $temppath, set in apache config
- $MAIL_IMG="/nswm/mail.gif";
- $LOG_PATH=$APP_PATH."log/";
- # colors
- $lightbgcolor="lightblue";
- $linkcolor="black";
- require $APP_PATH."lang-en.pl";
- return 1;