bobomailrc.py
上传用户:gyjinxi
上传日期:2007-01-04
资源大小:159k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

Python

  1. import os; pjoin = os.path.join
  2. ## bobomailrc:
  3. # general
  4. __version__ = "0.3-1"
  5. __author__ = "Henning Schr鰀er <ich@henning-schroeder.de>"
  6. true = 1
  7. false = not true
  8. app_dir = "/usr/local/bobomail"
  9. log_dir =  pjoin(app_dir, "logs")
  10. template_dir = pjoin(app_dir, "dtml")
  11. locale_dir = pjoin(app_dir, "locale")
  12. # Choose your language: "" for English or "de_DE" for German
  13. language = ""
  14. os.environ["LANGUAGE"] = language
  15. # Move the images directory somewhere to your document root
  16. # or make a alias in your httpd.conf 
  17. # like this:  Alias /bobomail/ "/usr/ local/bobomail/images/"
  18. image_dir = "/bobomail" # relative to document root
  19. # Currently choose here your pop3 server
  20. auth_host = "localhost"
  21. # place here the domain for the from-header
  22. domain = "meine-domain.de"
  23. # BoboMailHTTPD.py
  24. httpd_port = 9673
  25. access_log = pjoin(log_dir, "access.log")
  26. error_log = pjoin(log_dir, "error.log")
  27. # sendmail.py
  28. smtp_host = "localhost" # You might change smtp_host
  29. bm_mimetypes = pjoin(app_dir, "mime.types")
  30. # auth.py
  31. max_session_length = 3600 # in seconds
  32. auth_db_filename = pjoin(log_dir, "bobomail_auth.db")
  33. # fetchmail.py
  34. user_dir = "%s/Mail" % app_dir # not used currently
  35. pop3_host = imap4_host = auth_host
  36. # mimeviewer.py
  37. # no need to change something below
  38. mime_template = pjoin(template_dir, "mimepart.html")
  39. message_template = pjoin(template_dir, "messagepart.html")
  40. text_template = pjoin(template_dir, "textpart.html")
  41. html_template = pjoin(template_dir, "htmlpart.html")
  42. image_template = pjoin(template_dir, "imagepart.html")
  43. vcard_template = pjoin(template_dir, "vcardpart.html")
  44. # main.py
  45. template_template = pjoin(template_dir, "template.html")
  46. about_template = pjoin(template_dir, "about.html")
  47. login_template = pjoin(template_dir, "login.html")
  48. error_template = pjoin(template_dir, "error.html")
  49. compose_template = pjoin(template_dir, "compose.html")
  50. list_template = pjoin(template_dir, "list.html")
  51. mail_template = pjoin(template_dir, "mail.html")
  52. sent_template = pjoin(template_dir, "sent.html")
  53. # log.py
  54. log_filename = pjoin(log_dir, "bobomail.log")