{"id":18870181,"url":"https://github.com/thor77/puppet-sogo","last_synced_at":"2026-03-15T22:47:51.715Z","repository":{"id":56179926,"uuid":"240500670","full_name":"Thor77/puppet-sogo","owner":"Thor77","description":"Puppet module to manage SOGo","archived":false,"fork":false,"pushed_at":"2020-11-22T12:23:29.000Z","size":49,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-15T16:59:14.214Z","etag":null,"topics":["hacktoberfest","puppet","sogo"],"latest_commit_sha":null,"homepage":"https://forge.puppet.com/thor77/sogo/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Thor77.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-14T12:13:18.000Z","updated_at":"2020-11-22T12:22:48.000Z","dependencies_parsed_at":"2022-08-15T14:10:37.142Z","dependency_job_id":null,"html_url":"https://github.com/Thor77/puppet-sogo","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/Thor77/puppet-sogo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thor77%2Fpuppet-sogo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thor77%2Fpuppet-sogo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thor77%2Fpuppet-sogo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thor77%2Fpuppet-sogo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Thor77","download_url":"https://codeload.github.com/Thor77/puppet-sogo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thor77%2Fpuppet-sogo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261095027,"owners_count":23108758,"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","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":["hacktoberfest","puppet","sogo"],"created_at":"2024-11-08T05:19:11.114Z","updated_at":"2026-03-15T22:47:51.678Z","avatar_url":"https://github.com/Thor77.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# puppet-sogo\n[![Build Status](https://travis-ci.com/Thor77/puppet-sogo.svg?branch=master)](https://travis-ci.com/Thor77/puppet-sogo)\n[![Puppet Forge](https://img.shields.io/puppetforge/v/thor77/sogo.svg)](https://forge.puppetlabs.com/thor77/sogo)\n[![Puppet Forge Downloads](https://img.shields.io/puppetforge/dt/thor77/sogo.svg)](https://forge.puppetlabs.com/thor77/sogo)\n\n\n\nModule to manage [SOGo groupware](https://sogo.nu/)\n\n## Example\n\n```puppet\n$database = 'postgresql://sogo@127.0.0.1/sogo'\n\nclass { 'sogo':\n    # postgresql support\n    extra_packages =\u003e ['sope4.9-gdl1-postgresql'],\n    config =\u003e {\n        'SOGoProfileURL' =\u003e \"${database}/sogo_user_profile\",\n        'OCSFolderInfoURL' =\u003e \"${database}/sogo_folder_info\",\n        'OCSSessionsFolderURL' =\u003e \"${database}/sogo_sessions_folder\",\n        'SOGoSieveScriptsEnabled' =\u003e 'YES',\n        'SOGoMailCustomFromEnabled' =\u003e 'YES',\n        'SOGoUserSources' =\u003e [\n          {\n            'type'                  =\u003e 'sql',\n            'id'                    =\u003e 'directory',\n            'viewURL'               =\u003e 'postgresql://sogo@127.0.0.1/sogo/sogo_view',\n            'canAuthenticate'       =\u003e 'YES',\n            'isAddressBook'         =\u003e 'YES',\n            'userPasswordAlgorithm' =\u003e 'md5',\n          },\n        ],\n    },\n    envconfig =\u003e {\n        'PREFORK' =\u003e 3,\n    },\n}\n```\n\nMultiple user sources can be defined as an array of hashes\n\n```puppet\nclass { 'sogo':\n...\n    config =\u003e {\n        'SOGoUserSources' =\u003e [\n          {\n            'type' =\u003e 'sql',\n            'id' =\u003e 'directory',\n            'viewURL' =\u003e \"${database}/sogo_view\",\n            'canAuthenticate' =\u003e 'YES',\n            'isAddressBook' =\u003e 'YES',\n            'userPasswordAlgorithm' =\u003e 'md5',\n          },\n          {\n            'type' =\u003e 'sql',\n            'id' =\u003e 'addressbook',\n            'viewURL' =\u003e \"${database}/sogo_view_addresses\",\n            'canAuthenticate' =\u003e 'NO',\n            'isAddressBook' =\u003e 'YES',\n          },\n        ],\n    }\n...\n}\n```\n\nMultidomain example\n\n```puppet\nclass { 'sogo':\n...\n    config =\u003e {\n      'domains' =\u003e {\n        'example.org' =\u003e {\n          'SOGoSieveScriptsEnabled' =\u003e 'NO',\n          'SOGoUserSources' =\u003e [\n            {\n              'type' =\u003e 'sql',\n              'id' =\u003e 'directory',\n              'viewURL' =\u003e 'postgresql://sogo@127.0.0.1/sogo/sogo_view',\n            },\n          ],\n        },\n        'example.net' =\u003e {\n          'SOGoSieveScriptsEnabled' =\u003e 'YES',\n          'SOGoUserSources' =\u003e [\n            {\n              'type' =\u003e 'sql',\n              'id' =\u003e 'directory',\n              'viewURL' =\u003e 'postgresql://sogo@127.0.0.1/sogo/sogo_view',\n            },\n          ],\n        },\n      },\n    }\n...\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthor77%2Fpuppet-sogo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthor77%2Fpuppet-sogo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthor77%2Fpuppet-sogo/lists"}