File: ciderwebmail.yml

package info (click to toggle)
ciderwebmail 1.05%2B20150729-6
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 2,364 kB
  • sloc: perl: 3,176; xml: 782; makefile: 77; sh: 35
file content (57 lines) | stat: -rw-r--r-- 1,581 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
#IMAP server to use. if you specify port 993
#CiderWebmail will automatically use SSL
server:
    host: localhost
    port: 143


#Managesieve configuration, this requires an mailserver with managesieve support
#for example dovecot with sieve and mangesieve support compiled in
#
#to enable managesieve set mode to 
#   'on' for user-can-edit-everything (raw sieve editor) or
#   'vacation' for user can only enable vacation rules
managesieve:
    mode: off
    host: localhost
    port: 4190


#default language for the frontend to use
language: en

#use the username as default e-mail From address (unless the user
#specifies a different mail address). enable this if your users login with
#user@domain.tld as username
username_default_address: false

#if you enable this CiderWebmail will search message bodies using the
#IMAP SEARCH command. only enable this if you are aware of the resource
#requirements on your IMAP Server
enable_body_search: false

#per default CiderWebmail will fork a sendmail process to deliver mail.
#if you wish to use a SMTP server change method to smtp and change
#the host key
send:
    method: sendmail
#   host:   changeme

#logging
#Screen logger will log to STDERR
Log::Dispatch:
    -   class: Screen
        stderr: 1
        min_level: warn
        format: '%d %P %m%n'
#    -   class: File
#        min_level: debug
#        filename: /tmp/ciderwebmail.log
#        mode: append
#        format: '%d %P %m%n'
#    -   class: Syslog
#        min_level: debug
#        facility: mail
#        ident: ciderwebmail
#        format: '%P %m'