{"id":15227835,"url":"https://github.com/lvicainne/puppet-dovecot","last_synced_at":"2025-10-04T05:31:36.255Z","repository":{"id":57664444,"uuid":"77826261","full_name":"lvicainne/puppet-dovecot","owner":"lvicainne","description":"Puppet Dovecot Module for Dovecot 2+","archived":false,"fork":true,"pushed_at":"2017-06-04T13:15:08.000Z","size":147,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-05T20:33:40.620Z","etag":null,"topics":["dovecot","hiera","puppet"],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"mxhero/puppet-dovecot","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lvicainne.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-02T10:36:16.000Z","updated_at":"2017-11-22T22:03:38.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lvicainne/puppet-dovecot","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/lvicainne/puppet-dovecot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvicainne%2Fpuppet-dovecot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvicainne%2Fpuppet-dovecot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvicainne%2Fpuppet-dovecot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvicainne%2Fpuppet-dovecot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lvicainne","download_url":"https://codeload.github.com/lvicainne/puppet-dovecot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvicainne%2Fpuppet-dovecot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278267483,"owners_count":25958873,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dovecot","hiera","puppet"],"created_at":"2024-09-28T23:06:19.684Z","updated_at":"2025-10-04T05:31:35.855Z","avatar_url":"https://github.com/lvicainne.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dovecot\n\n[![Build Status](https://travis-ci.org/lvicainne/puppet-dovecot.svg?branch=master)](https://travis-ci.org/lvicainne/puppet-dovecot)\n\n#### Table of Contents\n\n1. [Description](#description)\n2. [Setup - The basics of getting started with BashRC](#setup)\n    * [What dovecot module affects](#what-dovecot-module-affects)\n    * [Setup requirements](#setup-requirements)\n    * [Beginning with dovecot](#beginning-with-dovecot)\n3. [Usage - Configuration options and additional functionality](#usage)\n4. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n5. [Limitations - OS compatibility, etc.](#limitations)\n6. [Development - Guide for contributing to the module](#development)\n\n## Description\n\nThis module works under RedHat, CentOS 6+, Ubuntu 12+ and FreeBSD.\nThis module configures a Dovecot server (2.x and later)\n\nIt is a fork from [mxHero](https://github.com/mxhero/puppet-dovecot)\n\n## Setup\n\n### What Dovecot module affects\n\n* Modify the files linked to dovecot (usually in /etc/dovecot) using the conf.d structure adopted by Dovecot 2.x.\n* Install all the packages linked to Dovecot IMAP server.\n* This module make also working managesieve.\n\n### Beginning with Dovecot\n\nA basic example is as follows:\n\n```puppet\n  include ::dovecot\n```\n\n## Usage \n\n* `dovecot` : Main class\n* `dovecot::file` : Definition to manage configuration file snippets\n* `dovecot::plugin` : Definition to install plugin sub-packages\n\nThis module is fully Hiera compliant : you can define your module data only in Hiera.\n\nExample Configuration\n---------------------\n\n    class { 'dovecot':\n        version                    =\u003e 2,\n        plugins                    =\u003e [ 'mysql', 'pigeonhole' ],\n        protocols                  =\u003e 'imap pop3 sieve',\n        verbose_proctitle          =\u003e 'yes',\n        auth_include               =\u003e 'sql',\n        mail_location              =\u003e 'maildir:~/Maildir',\n        auth_listener_userdb_mode  =\u003e '0660',\n        auth_listener_userdb_group =\u003e 'vmail',\n        auth_listener_postfix      =\u003e true,\n        ssl_cert                   =\u003e '/etc/pki/tls/certs/wildcard.example.com.crt',\n        ssl_key                    =\u003e '/etc/pki/tls/private/wildcard.example.com.key',\n        postmaster_address         =\u003e 'postmaster@example.com',\n        hostname                   =\u003e 'mail.example.com',\n        lda_mail_plugins           =\u003e '$mail_plugins sieve',\n        auth_sql_userdb_static     =\u003e 'uid=vmail gid=vmail home=/home/vmail/%d/%n',\n        log_timestamp              =\u003e '\"%Y-%m-%d %H:%M:%S \"',\n    }\n\n    dovecot::file { 'dovecot-sql.conf.ext':\n        source =\u003e 'puppet:///modules/example/dovecot-sql.conf.ext',\n    }\n\n## Limitations\n\nThis module has only been tested on my Debian and CentOS servers. I can not guarantee for any other Operating System\nPlease note the parameter \"version\" is used to adapt confriguration files to the major version of Dovecot\n\n## Development\n\nI chose to open my own Dovecot Module ; but you are free to contribute on it, etc.\n\n## Release Notes/Contributors/Etc. \n\nIt is a fork from [mxHero](https://github.com/mxhero/puppet-dovecot)\nThanks to every contributors (Coreone in particular)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flvicainne%2Fpuppet-dovecot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flvicainne%2Fpuppet-dovecot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flvicainne%2Fpuppet-dovecot/lists"}