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

WEB邮件程序

开发平台:

Perl

  1. #!/usr/local/bin/perl
  2. # SMTP server address
  3. $SMTPserver = "<your stmp server>";
  4. # using SMTP VRFY ? (disable this if you get problems on new mails)
  5. $verifysmtp=1;
  6. # masquarade domain in sent mail (comment out to disable)
  7. $masquarade="<your domain>";
  8. # force pop server (leave undefined for user-selection)
  9. #$POPserver = "<your pop3 server>";
  10. # what method to use [PASS|APOP] (qpop3d doesn't support APOP with pam!)
  11. $POPauth = "APOP";
  12. # allow users to change from address
  13. $fake_from=1;
  14. # encryption key: MUST be 4 characters long
  15. $keycrypt="test";
  16. # PATHS
  17. $PATH_NSWM="/nswm"; # app path 
  18. $CGI_PATH_NSWM="/nswm/cgi-bin/"; # cgi path (url)
  19. $temppath="/tmp/nswm"; # on the local filesystem
  20. $tempurl="/nswmtemp"; # directed to $temppath, set in apache config
  21. $MAIL_IMG="/nswm/mail.gif";
  22. $LOG_PATH=$APP_PATH."log/";
  23. # colors
  24. $lightbgcolor="lightblue";
  25. $linkcolor="black";
  26. require $APP_PATH."lang-en.pl";
  27. return 1;