Browse Source

Removed some commented attribute values

Xabier de Zuazo 11 years ago
parent
commit
e0d714854a

+ 0 - 36
attributes/auth.rb

@@ -1,39 +1,3 @@
 
 default['dovecot']['auth'] = {}
 
-# default['dovecot']['auth']['checkpassword'] = nil
-# default['dovecot']['auth']['checkpassword'] = { # hash
-#   'passdb' => {
-#     'driver' => 'checkpassword',
-#     'args' => '/usr/bin/checkpassword',
-#   },
-#   'userdb' => {
-#     'driver' => 'prefetch',
-#   },
-# }
-# default['dovecot']['auth']['deny'] = nil
-# default['dovecot']['auth']['ldap'] = nil
-# default['dovecot']['auth']['master'] = nil
-# default['dovecot']['auth']['passwdfile'] = nil
-# default['dovecot']['auth']['sql'] = nil
-# default['dovecot']['auth']['system'] = {}
-# default['dovecot']['auth']['system']['passdb'] = [ # array
-#   {
-#     # without driver
-#     'args' => 'dovecot',
-#   },
-#   {
-#     'driver' => 'passwd',
-#     'args' => '',
-#   },
-#   {
-#     'driver' => 'shadow',
-#     'args' => '',
-#   },
-#   {
-#     'driver' => 'bsdauth',
-#     'args' => '',
-#   },
-# ]
-# default['dovecot']['auth']['vpopmail'] = nil
-

+ 0 - 25
attributes/conf-dovecot-dict-sql.rb

@@ -2,29 +2,4 @@
 # dovecot-dict-sql.conf.ext
 
 default['dovecot']['conf']['dict_sql']['connect'] = nil
-# default['dovecot']['conf']['dict_sql']['connect'] = 'host=localhost dbname=mails user=testuser password=pass'
-# default['dovecot']['conf']['dict_sql']['maps'] = nil
-# default['dovecot']['conf']['dict_sql']['maps'] = [
-#   {
-#     'pattern' => 'priv/quota/storage',
-#     'table' => 'quota',
-#     'username_field' => 'username',
-#     'value_field' => 'bytes',
-#   },
-#   {
-#     'pattern' => 'priv/quota/messages',
-#     'table' => 'quota',
-#     'username_field' => 'username',
-#     'value_field' => 'messages',
-#   },
-#   {
-#     'pattern' => 'shared/expire/$user/$mailbox',
-#     'table' => 'expires',
-#     'value_field' => 'expire_stamp',
-#     'fields' => {
-#       'username' => '$user',
-#       'mailbox' => '$mailbox',
-#     },
-#   },
-# ]
 

+ 0 - 42
attributes/namespaces.rb

@@ -1,45 +1,3 @@
 
 default['dovecot']['namespaces'] = [
-#   {
-#     'separator' => '/',
-#     'prefix' => '"#mbox/"',
-#     'location' => 'mbox:~/mail:INBOX=/var/mail/%u',
-#     'inbox' => true,
-#     'hidden' => true,
-#     'list' => false,
-#   }, {
-#     'separator' => '/',
-#     'prefix' => '',
-#     'location' => 'maildir:~/Maildir',
-#   }, {
-#     'name' => 'inbox',
-#     'separator' => '/',
-#     'prefix' => '',
-#     'inbox' => 'yes',
-#     'inbox' => true,
-#     'mailboxes' => {
-#       'Drafts' => {
-#         'special_use' => '\Drafts',
-#       },
-#       'Junk' => {
-#         'special_use' => '\Junk',
-#       },
-#       'Trash' => {
-#         'special_use' => '\Trash',
-#       },
-#       'Sent' => {
-#         'special_use' => '\Sent',
-#       },
-#       'Sent Messages' => {
-#         'special_use' => '\Sent',
-#       },
-#       'virtual/All' => {
-#         'special_use' => '\All',
-#       },
-#       'virtual/Flagged' => {
-#         'special_use' => '\All',
-#       },
-#     },
-#   },
-]
 

+ 0 - 7
attributes/plugins.rb

@@ -1,13 +1,6 @@
 
 default['dovecot']['conf']['mail_plugins'] = []
 
-# default['dovecot']['plugins']['mail_log'] = nil
-# default['dovecot']['plugins']['mail_log'] = {
-#   'mail_log_events' => 'delete undelete expunge copy mailbox_delete mailbox_rename',
-#   'mail_log_fields' => 'uid box msgid size'
-# }
-# default['dovecot']['plugins']['acl'] = nil
-# default['dovecot']['plugins']['quota'] = nil
 default['dovecot']['plugins']['sieve'] = {
   'sieve' => '~/.dovecot.sieve',
   'sieve_dir' => '~/sieve',

+ 0 - 9
attributes/protocols.rb

@@ -1,12 +1,3 @@
 
 default['dovecot']['protocols'] = {}
 
-# default['dovecot']['protocols']['lda'] = nil
-# default['dovecot']['protocols']['lda'] = {
-#   'mail_plugins' => [ '$mail_plugins' ],
-# }
-# default['dovecot']['protocols']['imap'] = {}
-# default['dovecot']['protocols']['lmtp'] = nil
-# default['dovecot']['protocols']['sieve'] = nil
-# default['dovecot']['protocols']['pop3'] = nil
-

+ 0 - 42
attributes/services.rb

@@ -1,45 +1,3 @@
 
 default['dovecot']['services'] = {}
 
-# default['dovecot']['services']['director'] = nil
-# default['dovecot']['services']['director']['listeners'] = [
-#   { 'unix:login/director' => {
-#       'mode' => '0666',
-#   } },
-#   { 'fifo:login/proxy-notify' => {
-#       'mode' => '0666',
-#   } },
-#   { 'unix:director-userdb' => {
-#       'mode' => '0666',
-#    } },
-#   { 'inet' => {
-#       'port' => '5432',
-#   } },
-# ]
-# default['dovecot']['services']['imap-login'] = nil
-# default['dovecot']['services']['imap-login'] = {
-#   'listeners' => [
-#     { 'inet:imap' => {
-#      # 'port' => 143,
-#     } },
-#     { 'inet:imaps' => {
-#       # 'port' => 993,
-#       # 'ssl' => true,
-#     } },
-#   ],
-#   # 'service_count' => 1,
-#   # 'process_min_avail' => 0,
-#   # 'vsz_limit' => '64M',
-# }
-# default['dovecot']['services']['pop3-login'] = nil
-# default['dovecot']['services']['lmtp'] = nil
-# default['dovecot']['services']['imap'] = nil
-# default['dovecot']['services']['pop3'] = nil
-# default['dovecot']['services']['auth'] = nil
-# default['dovecot']['services']['auth-worker'] = nil
-# default['dovecot']['services']['dict'] = nil
-# default['dovecot']['services']['tcpwrap'] = nil
-
-# default['dovecot']['services']['managesieve-login'] = nil
-# default['dovecot']['services']['managesieve'] = nil
-