Compare commits

..

10 Commits

Author SHA1 Message Date
Greg Karekinian
dd6598572a Remove ancient attribute
All checks were successful
Mark stale issues and pull requests / stale (push) Successful in 45s
See https://github.com/sous-chefs/postfix/issues/148
2025-09-09 14:49:55 +02:00
renovate[bot]
a1d3f87a1f Update actions/stale action to v10 (#212)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-04 11:16:57 -07:00
Sous Chefs Bot
bac81159f3 Set Changelog to ## Unreleased 2025-09-04 19:06:06 +01:00
Sous Chefs Bot
ac8a7f627e Update metadata for 6.4.1 2025-09-04 19:06:02 +01:00
Sous Chefs Bot
7a8b6f2bae Update changelog for 6.4.1 2025-09-04 19:06:01 +01:00
renovate[bot]
f5aa4db676 Update actions/checkout action to v5 (#211)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-04 11:05:57 -07:00
Sous Chefs Bot
5d7bbeca94 Set Changelog to ## Unreleased 2025-07-30 22:10:06 +01:00
Sous Chefs Bot
0a87b3f4a5 Update metadata for 6.4.0 2025-07-30 22:10:03 +01:00
Sous Chefs Bot
2880d9f1f8 Update changelog for 6.4.0 2025-07-30 22:10:02 +01:00
Sous Chefs Bot
29554c7fda Automated PR: Standardising Files (#209)
* Standardise files with files in sous-chefs/repo-management

Signed-off-by: kitchen-porter <board@sous-chefs.org>

* Update CHANGELOG.md

Linting

---------

Signed-off-by: kitchen-porter <board@sous-chefs.org>
Co-authored-by: Corey Hemminger <hemminger@hotmail.com>
2025-07-30 16:09:58 -05:00
6 changed files with 12 additions and 6 deletions

View File

@@ -48,7 +48,7 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v4 # v4
uses: actions/checkout@v5
- name: Install Chef
uses: actionshub/chef-install@3.0.1
- name: Dokken

View File

@@ -8,7 +8,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
- uses: actions/stale@v10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
close-issue-message: >

View File

@@ -1,7 +1,7 @@
{
"recommendations": [
"chef-software.chef",
"rebornix.ruby",
"Shopify.ruby-lsp",
"editorconfig.editorconfig",
"DavidAnson.vscode-markdownlint"
]

View File

@@ -4,6 +4,14 @@ This file is used to list changes made in each version of the postfix cookbook.
## Unreleased
## 6.4.1 - *2025-09-04*
## 6.4.0 - *2025-07-30* ## 6.4.0 - *2025-07-30*
Standardise files with files in sous-chefs/repo-management
## 6.4.0 - *2025-07-30*
## 6.3.0 - *2025-07-30*
- Use LMDB instead of hash on el10

View File

@@ -3,7 +3,7 @@ maintainer 'Sous Chefs'
maintainer_email 'help@sous-chefs.org'
license 'Apache-2.0'
description 'Installs and configures postfix for client or outbound relayhost, or to do SASL auth'
version '6.3.0'
version '6.4.1'
source_url 'https://github.com/sous-chefs/postfix'
issues_url 'https://github.com/sous-chefs/postfix/issues'
chef_version '>= 12.15'

View File

@@ -31,8 +31,6 @@ if node['postfix']['main']['smtp_sasl_auth_enable'] == 'yes'
node.default_unless['postfix']['sasl_password_file'] = "#{node['postfix']['conf_dir']}/sasl_passwd"
node.default_unless['postfix']['main']['smtp_sasl_password_maps'] = "#{node['postfix']['db_type']}:#{node['postfix']['sasl_password_file']}"
node.default_unless['postfix']['main']['smtp_sasl_security_options'] = 'noanonymous'
node.default_unless['postfix']['sasl']['smtp_sasl_user_name'] = ''
node.default_unless['postfix']['sasl']['smtp_sasl_passwd'] = ''
node.default_unless['postfix']['main']['relayhost'] = ''
end