jaromail

a commandline tool to easily and privately handle your e-mail
git clone git://parazyd.org/jaromail.git
Log | Files | Refs | Submodules | README

dovecot.conf (1427B)


      1 # listen = 127.0.0.1:10143
      2 base_dir = /tmp/dovecot
      3 mail_uid = jrml
      4 default_login_user = jrml
      5 default_internal_user = jrml
      6 log_path = /home/jrml/Dove/dovecot.log
      7 
      8 postmaster_address = jaromil@dyne.org
      9 
     10 # remove default chrooting
     11 service anvil {
     12   chroot = 
     13 }
     14 service imap-login {
     15   chroot = 
     16 }
     17 service pop3-login {
     18   chroot = 
     19 }
     20 
     21 # use passwd for auth
     22 passdb {
     23   driver = passwd-file
     24   args = /home/jrml/Dove/dovecot.passwd
     25 }
     26 userdb {
     27   driver = passwd
     28 }
     29 
     30 # create maildirs
     31 lda_mailbox_autocreate = yes
     32 
     33 login_trusted_networks = 127.0.0.1
     34 protocols = imap
     35 ssl = no
     36 # default_mail_env = maildir:~/Maildir
     37 
     38 mail_location = maildir:~/Dove:LAYOUT=fs
     39 namespace {
     40   separator = /
     41   prefix = INBOX
     42   location = maildir:~/Dove/INBOX
     43   inbox = yes
     44   hidden = yes
     45   list = no
     46 }
     47 namespace {
     48   separator = /
     49   prefix = 
     50   location = maildir:~/Dove:LAYOUT=fs
     51   inbox = no
     52   hidden = no
     53   list = yes
     54 }
     55 
     56 
     57 protocol imap {
     58   # Space separated list of plugins to load (default is global mail_plugins).
     59   #mail_plugins = $mail_plugins
     60   # maximum number of imap connections allowed for a user from each ip address.
     61   # note: the username is compared case-sensitively.
     62   #mail_max_userip_connections = 10
     63 }
     64 
     65 service imap-login {
     66  user = jrml
     67  inet_listener imap {
     68   port = 10143
     69  }
     70 
     71  inet_listener imaps {
     72   port = 10993
     73  }
     74 }
     75 
     76 protocol lda {
     77  mail_plugins = sieve
     78 }
     79 
     80 plugin {
     81   sieve_dir = /home/jrml/Dove
     82   sieve = /home/jrml/Dove/Filters.sieve
     83 }