rp

simple email tools
git clone https://git.parazyd.org/rp
Log | Files | Refs | README | LICENSE

dovecot.conf (525B)


      1 ## Dovecot configuration file
      2 
      3 #import_environment=LD_LIBRARY_PATH=/lib:/usr/lib:/usr/lib/dovecot
      4 
      5 protocols = imap
      6 listen = 127.0.0.1
      7 
      8 auth_mechanisms = plain
      9 
     10 passdb {
     11 	driver = passwd-file
     12 	args = /etc/dovecot/dovepasswd
     13 }
     14 
     15 userdb {
     16 	driver = passwd
     17 }
     18 
     19 log_path = syslog
     20 
     21 mail_location = mdbox:~/mail
     22 # see bottom of 10-mail.conf
     23 mdbox_rotate_size = 10M
     24 mdbox_rotate_interval = 0
     25 
     26 ssl = no
     27 
     28 
     29 #mail_plugins = $mail_plugins fts fts_lucene
     30 #plugin {
     31 #	fts = lucene
     32 #	fts_lucene = whitespace_chars=@.
     33 #	fts_autoindex = yes
     34 #}