-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reimplementation of dovecot module #45
Open
amateo
wants to merge
29
commits into
mjhas:master
Choose a base branch
from
amateo:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
They are distributed in current distributions and this modification breaks the augeas system
The rest of packages are installed in their corresponding subclasses
So you could define augeas options as a hash
It adds all the possible options in the 10-auth.conf file
In order to support all dovecot versions/updates, options are all grouped under a "options" Hash.
In order to extend the options available, all options are passed in a hash "options". The plugin configuration of this file is done with the hash "plugins".
In order to support all dovecot versions/updates, options are all grouped under an "options" Hash.
This is a define to configure services in the 10-master.conf configuration file
In order to support all dovecot versions/updates, options are all grouped under a "options" Hash. It also hash a "services" hash to create/remove services in this configuration file
In order to support all dovecot versions/updates, options are all grouped under a "options" Hash. It also hash the parameter "mail_plugins" to define plugins specific to this protocol.
This define is to create listeners (inet/unix/fifo) for dovecot services.
In order to support all dovecot versions/updates, options are all grouped under a "options" Hash. It also provides parameters for: * protocol_options: configure options under "protocol imap" in 20-imap.conf configuration file * service_options: configure options under "service imap" in 10-master.conf configuration file * login_options: configure options under "service imap-login" in 10-master.conf configuration file * inet_listeners: configure listeners for imap-login It also provides dovecot::imap::inet_listeners to create/remove listeners for imap-login besides the one define in the inet_listeners parameter of dovecot::imap
In order to support all dovecot versions/updates, options are all grouped under a "options" Hash. It also provides parameters for: * protocol_options: configure options under "protocol lmtp" in 20-lmtp.conf configuration file * inet_listeners: configure listeners for lmtp * unix_listeners: configure listeners for lmtp It also provides dovecot::lmtp::inet_listeners and dovecot::lmtp::unix_listeners to create/remove listeners for lmtp besides the ones defined in the (inet|unix)_listeners parameters of dovecot::lmtp
In order to support all dovecot versions/updates, options are all grouped under a "options" Hash. It also provides parameters for: * protocol_options: configure options under "protocol pop3" in 20-pop3.conf configuration file * service_options: configure options under "service pop3" in 10-master.conf configuration file * login_options: configure options under "service pop3-login" in 10-master.conf configuration file * inet_listeners: configure listeners for pop3-login It also provides dovecot::pop3::inet_listeners to create/remove listeners for pop3-login besides the one define in the inet_listeners parameter of dovecot::pop3
In order to support all dovecot versions/updates, options are all grouped under a "options" Hash
This class is used to configure auth-system authentication
To configure passwd authentication. It obsoletes dovecot::passwdfile.
to configure ldap authentication for dovecot
To configure unix_listeners for auth service in 10-master.conf
This define could be use to configure plugins in 90-plugin.conf
If pass_attrs neither pass_filter are provided passdb is not enabled
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I have made a reimplementation of you dovecot puppet module in order to enable more options.
In this process, I have changed the code of a lot of your classes. If you like, you could merge it.