Docker image which provides a full Eressea installation to host a local game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.5 KiB

3 weeks ago
  1. ##################################
  2. ## UPDATE EVERYTHING FROM HERE >>>
  3. # name of the sender for eressea mails
  4. set from = "{{game.email}}"
  5. set realname = "{{general.realname}}"
  6. # credentials for smtp access
  7. set smtp_url = "smtp://{{smtp.user}}@{{smtp.server}}:{{smtp.port}}"
  8. set smtp_pass = "{{smtp.pass}}"
  9. # from time to time change this value from no to yes.
  10. # It will clean the mail caches. But it can be slow in big mailboxes
  11. set message_cache_clean = no
  12. ## <<< UPDATE EVERYTHING TO HERE
  13. ################################
  14. # caches
  15. set header_cache = "/data/mail/cache/headers"
  16. set message_cachedir = "/data/mail/cache/bodies"
  17. set certificate_file = "/data/mail/certificates"
  18. # mailbox
  19. set mbox_type="maildir"
  20. set folder="/data/mail/postbox"
  21. set spoolfile="+inbox"
  22. set record="+sent"
  23. set postponed="+draft"
  24. set move=no
  25. mailboxes `echo -n "+ "; find /data/mail/postbox -maxdepth 1 -type d -name "*" -printf "+'%f' "`
  26. macro index c "<change-folder>?<toggle-mailboxes>" "open a different folder"
  27. macro pager c "<change-folder>?<toggle-mailboxes>" "open a different folder"
  28. macro index C "<copy-message>?<toggle-mailboxes>" "copy a message to a mailbox"
  29. macro index M "<save-message>?<toggle-mailboxes>" "move a message to a mailbox"
  30. macro compose A "<attach-message>?<toggle-mailboxes>" "attach message(s) to this message"
  31. # various options
  32. set mail_check = 30
  33. set sort = "threads"
  34. set sort_aux = "reverse-last-date-received"
  35. set auto_tag = yes
  36. hdr_order Date From To Cc
  37. alternative_order text/plain text/html *
  38. auto_view text/html
  39. set editor = "nano"